我使用的是confluent,根据官方文档,我只需要在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>
但是Kafka2.11版本0.10.1.0-cp1似乎不存在。网站http://packages.confluent.io/maven/ 也联系不上。我怎样才能得到它?
1条答案
按热度按时间ovfsdjhp1#
我正在使用以下maven Dependency,它对我很好:
希望这会有帮助