Michal Turek created KAFKA-2907:
-----------------------------------

             Summary: Client libraries 0.9 are missing in Maven repository
                 Key: KAFKA-2907
                 URL: https://issues.apache.org/jira/browse/KAFKA-2907
             Project: Kafka
          Issue Type: Bug
          Components: clients
    Affects Versions: 0.9.0.0
            Reporter: Michal Turek


Kafka 0.9 has been released recently, but there are missing kafka-clients 
artifacts of this version in Maven repository. The latest available version is 
0.8.2.2 at the moment (2015-11-30).

http://mvnrepository.com/artifact/org.apache.kafka/kafka-clients

Workaround is to checkout and build them from sources.

{noformat}
git pull https://github.com/apache/kafka.git
cd kafka
git checkout 0.9.0.0
gradle
./gradlew clean
./gradlew releaseTarGz -x signArchives

# Install the JARs locally to ~/.m2/repository/...
mvn install:install-file -Dfile=clients/build/libs/kafka-clients-0.9.0.0.jar 
-DgroupId=org.apache.kafka -DartifactId=kafka-clients 
-Dversion=0.9.0.0-localbuild -Dpackaging=jar
mvn install:install-file 
-Dfile=clients/build/libs/kafka-clients-0.9.0.0-sources.jar 
-DgroupId=org.apache.kafka -DartifactId=kafka-clients 
-Dversion=0.9.0.0-localbuild -Dclassifier=sources -Dpackaging=jar
mvn install:install-file 
-Dfile=clients/build/libs/kafka-clients-0.9.0.0-javadoc.jar 
-DgroupId=org.apache.kafka -DartifactId=kafka-clients 
-Dversion=0.9.0.0-localbuild -Dclassifier=javadoc -Dpackaging=jar
{noformat}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to