kafka pom依赖版本问题

rt4zxlrg  于 2021-06-04  发布在  Kafka
关注(0)|答案(1)|浏览(611)

我在我的项目中使用kafka stream 2.3.0依赖项,但是当我在2.3.0中构建jar时,我看到了2.0.1kafka版本,并导致了kafka连接问题。我从来没有使用2.0.1在我的代码,想知道从哪里Kafka采取这个版本

<properties>
    <streams.version>2.3.0</streams.version>
</properties>
<dependency>
    <groupId>org.apache.kafka</groupId>
    <artifactId>kafka-streams</artifactId>
    <version>${streams.version}</version>
</dependency>
f8rj6qna

f8rj6qna1#

apache kafka可以添加为可传递的依赖项:
请在pom.xml中为您的需求指定Kafka的具体版本。请参阅以下内容:
https://mvnrepository.com/artifact/org.apache.kafka/kafka
也可以选择排除不需要的依赖项:

<properties>
    <streams.version>2.3.0</streams.version>
</properties>
<dependency>
    <groupId>org.apache.kafka</groupId>
    <artifactId>kafka-streams</artifactId>
    <version>${streams.version}</version>
    <exclusions>
        <exclusion>  <!-- declare the exclusion here -->
          <groupId>org.apache.kafka</groupId>
          <artifactId>kafka</artifactId>
        </exclusion>
      </exclusions> 

  </dependency>

相关问题