Maven依赖版本问题

时间:2019-01-14 06:09:02

标签: java maven pom.xml maven-dependency

我在我的项目abc-bus-api中使用kafka-client依赖项。版本是2.1.0。见下文。

    <dependency>
        <groupId>org.apache.kafka</groupId>
        <artifactId>kafka-clients</artifactId>
        <version>2.1.0</version>
        <exclusions>
            <exclusion>
                <groupId>org.slf4j</groupId>
                <artifactId>slf4j-api</artifactId>
            </exclusion>
        </exclusions>
    </dependency>

enter image description here

现在,上面的这个项目是另一个项目abc-lib中的依赖项。在这里,我看到的kafka客户端版本与abc-bus-api中指定的版本不同。见下文。

enter image description here

STS中的行家树(适用于kafka):

enter image description here

任何人都在这里猜错了。

0 个答案:

没有答案