我在应用程序中使用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属性。 我该如何解决这个问题?