gpt4 book ai didi

java - 在汇合存储库中找不到 kafka 库

转载 作者:行者123 更新时间:2023-12-02 10:31:04 24 4
gpt4 key购买 nike

我使用的是confluence,根据官方文档,我只需要在pom.xml中进行如下配置:

<repositories>
<repository>
<id>confluent</id>
<url>http://packages.confluent.io/maven/</url>
</repository>
<!-- further repository entries here -->
</repositories>


<dependencies>
<dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>kafka_2.11</artifactId>
<!-- For CP 3.1.0 -->
<version>0.10.1.0-cp1</version>
</dependency>
</dependencies>

但是版本0.10.1.0-cp1的kafka_2.11似乎不存在。网站http://packages.confluent.io/maven/也无法到达。我怎样才能得到它?

enter image description here enter image description here

最佳答案

我正在使用下面的 Maven 依赖项,它对我来说工作正常:

   <dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>connect-api</artifactId>
<version>0.10.2.0-cp1</version>
</dependency>



<repository>
<id>confluent</id>
<name>Confluent</name>
<url>http://packages.confluent.io/maven/</url>
</repository>

希望这会有所帮助

关于java - 在汇合存储库中找不到 kafka 库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53611553/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com