User serializer for protobuf3 (#27362)

* User serializer for protobuf3
This commit is contained in:
Christopher Batey 2019-07-23 15:22:07 +01:00 committed by Arnout Engelen
parent d4dcbee4c9
commit 6c416c2818
6 changed files with 721 additions and 3 deletions

View file

@ -134,6 +134,8 @@ object Dependencies {
// reactive streams tck
val reactiveStreamsTck = "org.reactivestreams" % "reactive-streams-tck" % "1.0.2" % "test" // CC0
val protobufRuntime = "com.google.protobuf" % "protobuf-java" % "3.9.0" % "test"
}
object Provided {
@ -184,7 +186,7 @@ object Dependencies {
val remoteDependencies = Seq(netty, aeronDriver, aeronClient)
val remoteOptionalDependencies = remoteDependencies.map(_ % "optional")
val remote = l ++= Seq(agrona, Test.junit, Test.scalatest.value, Test.jimfs) ++ remoteOptionalDependencies
val remote = l ++= Seq(agrona, Test.junit, Test.scalatest.value, Test.jimfs, Test.protobufRuntime) ++ remoteOptionalDependencies
val remoteTests = l ++= Seq(Test.junit, Test.scalatest.value, Test.scalaXml) ++ remoteDependencies