<repositories> ... <repository> <id>confluent</id> <url>http://packages.confluent.io/maven/</url> </repository> ... </repositories>
<dependencies>
...
<dependency>
<groupId>io.confluent</groupId>
<artifactId>kafka-avro-serializer</artifactId>
<version>2.0.0</version>
</dependency>
...
</dependencies>and add this to my SBT build file:
resolvers ++= Seq ( Opts.resolver.mavenLocalFile, "Confluent" at "http://packages.confluent.io/maven" )
val kafkaAvroSeralizer = "io.confluent" % "kafka-avro-serializer" % "2.0.0"
val kafkaDependencies: Seq[ModuleID] = Seq ( kafkaAvroSeralizer )
libraryDependencies ++= kafkaDependencies
It fails to resolve any of the dependencies. For example:
http://packages.confluent.io/maven/io/confluent/kafka-avro-serializer/2.0.0/kafka-avro-serializer-2.0.0-sources.jar Has anyone used Confluent's repo with SBT? I'd rather not have to host them on my own repo.
Thanks!
--
You received this message because you are subscribed to the Google Groups "Confluent Platform" group.
To unsubscribe from this group and stop receiving emails from it, send an email to confluent-platf...@googlegroups.com.
To post to this group, send email to confluent...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/confluent-platform/8237c7f9-97fa-4f5b-942a-5ebb6ccb01fd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
To view this discussion on the web visit https://groups.google.com/d/msgid/confluent-platform/CAE1jLMOUc3FN%3DF5%2BfbtFgTQUcyxvzpBWindLTGwA-GGQx8F9LA%40mail.gmail.com.
resolvers ++= Seq(
"confluent" at "https://packages.confluent.io",
Resolver.mavenLocal
)
libraryDependencies ++= Seq(
"io.confluent" % "kafka-avro-serializer" % "3.3.1"
)'https' is the only change I made.