Confluent Maven repository not working?

后端 未结 5 845
太阳男子
太阳男子 2020-12-29 23:08

I need to use the Confluent kafka-avro-serializer Maven artifact. From the official guide I should add this repository to my Maven pom



        
5条回答
  •  旧时难觅i
    2020-12-29 23:38

    You can add a mirror in you maven settings file to fetch the jars from confluent repo along with repository config . Changes needed are Add a mirror in settings.xml

       
          confluent
          confluent
          Nexus public mirror
          http://packages.confluent.io/maven/
    
    

    In repository section of maven settings add this

    
              confluent
              http://packages.confluent.io/maven/
              
                true
              
              
                true
              
    
    

提交回复
热议问题