使用BOM时的换向依赖问题

问题描述 投票:0回答:1

假设我有1.一个炸弹项目(命名为bom) 2.一个罐子项目(命名为A) 3.一个战争项目(命名为B)

bom 项目的 jackson-data 版本在属性中是 2.8.5 和 2.8.1,在依赖管理部分 2.8.5 中是 jackson-data。

继承 bom 的项目 A 在其中声明 jackson-data 依赖版本为 2.8.1。

项目 B 依赖于项目 A 并继承 bom,但它没有在其依赖关系中声明 jackson-data。

现在,当我查看项目B的lib目录时,jackson-data的版本是2.8.5,而项目A却将其声明为2.8.1。

有什么办法可以解决jackson-data在项目B中的转义依赖关系,因为它在项目A中被声明为2.8.1,而不是2.8.5,同时使用bom?

以下是poms

BOM项目

  <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema- 
    instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
   http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>com.test</groupId>
<artifactId>bom</artifactId>
<version>1.1</version>
<packaging>pom</packaging>

<properties>
    <jackson-databind.version>2.8.5</jackson-databind.version>
    <jackson-databind.version.A>2.8.1</jackson-databind.version.A>
</properties>

<dependencyManagement>
   <dependencies>
        <dependency>
            <groupId>com.test</groupId>
            <artifactId>A</artifactId>
            <version>1.0</version>
        </dependency>
        <dependency>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-databind</artifactId>
            <version>${jackson-databind.version}</version>
        </dependency>
   </dependencies>
</dependencyManagement>

项目A的规模

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>com.test</groupId>
        <artifactId>bom</artifactId>
        <version>1.1</version>
    </parent>
    <groupId>com.test</groupId>
    <artifactId>A</artifactId>
    <version>1.0</version>

    <dependencies>
        <dependency>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-databind</artifactId>
            <version>2.8.1</version>
        </dependency>

    </dependencies>
</project>

项目B

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

<parent>
    <groupId>com.emirates.ibe</groupId>
    <artifactId>bom</artifactId>
    <version>1.1</version>
</parent>
    <groupId>com.test</groupId>
    <artifactId>B</artifactId>
    <version>1.0</version>
    <packaging>war</packaging>

    <dependencies>

        <dependency>
            <groupId>com.test</groupId>
            <artifactId>A</artifactId>
        </dependency>

    </dependencies>
    <build>
        <sourceDirectory>src</sourceDirectory>
        <plugins>

            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.1</version>
                <configuration>
                    <source>1.7</source>
                    <target>1.7</target>
                </configuration>
            </plugin>
            <plugin>
                <artifactId>maven-war-plugin</artifactId>
                <version>2.6</version>
                <configuration>
                    <warName>B</warName>
                    <warSourceDirectory>WebContent</warSourceDirectory>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>

java maven maven-2 maven-3 maven-bom
1个回答
1
投票

DependencyManagement 覆盖了转义的依赖关系。这就是这里发生的事情(这就是它的目的)。

如果你想要一个不同的版本,要么改变依赖管理,要么在你使用A的项目中覆盖

© www.soinside.com 2019 - 2024. All rights reserved.