Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Code changes to upgrade latest versions of kafka and confluent schema registry. #44

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,23 @@ class JerseySchemaRegistryClient(settings: SchemaRegistryClientSettings)

override def getId(subject: String, schema: Schema): Int =
throw new UnsupportedOperationException

override def deleteSchemaVersion(requestProperties: util.Map[String, String],
subject: String,
version: String): Integer =
throw new UnsupportedOperationException

override def deleteSchemaVersion(subject: String, version: String): Integer =
throw new UnsupportedOperationException

override def deleteSubject(requestProperties: util.Map[String, String], subject: String): util.List[Integer] =
throw new UnsupportedOperationException

override def deleteSubject(subject: String): util.List[Integer] =
throw new UnsupportedOperationException

override def getAllVersions(subject: String): util.List[Integer] =
throw new UnsupportedOperationException
}

object JerseySchemaRegistryClient {
Expand Down
4 changes: 2 additions & 2 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,9 @@ object Dependencies {

object kafka {

private val version = "0.11.0.1"
private val version = "1.1.0"

val avroSerializer = "io.confluent" % "kafka-avro-serializer" % "4.0.0" exclude ("org.slf4j", "slf4j-log4j12")
val avroSerializer = "io.confluent" % "kafka-avro-serializer" % "4.1.1" exclude ("org.slf4j", "slf4j-log4j12")
val client = "org.apache.kafka" % "kafka-clients" % version exclude ("org.slf4j", "slf4j-log4j12")
}

Expand Down