我如何使用与骆驼项目中相同版本的依赖项?

时间:2019-04-24 09:45:54

标签: spring-boot apache-camel pom.xml maven-bom

我在应用程序中使用Camel和Spring引导。我将使用与Camel使用的某些依赖项相同的版本(spring.boot-version和commons-lang-version)。 我有骆驼父母作为父母,但这会引起一些问题。

  <parent>
    <groupId>org.apache.camel</groupId>
    <artifactId>camel-parent</artifactId>
    <version>2.23.1</version>
  </parent>

除了我尝试使用Bom文件

 <!-- Spring Boot BOM -->
      <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-dependencies</artifactId>
        <version>${spring.boot-version}</version>
        <type>pom</type>
        <scope>import</scope>
      </dependency>
      <!-- Camel BOM -->
      <dependency>
        <groupId>org.apache.camel</groupId>
        <artifactId>camel-spring-boot-dependencies</artifactId>
        <version>${camel.version}</version>
        <type>pom</type>
        <scope>import</scope>
      </dependency>

但是那里没有spring.boot-version和commons-lang-version属性。 我该如何解决这个问题?

0 个答案:

没有答案