Skip to content

Commit 0a34e50

Browse files
committed
Update chill-protobuf with protobuf 3.17.1 (#571)
1 parent 93e4cba commit 0a34e50

File tree

7 files changed

+34
-588
lines changed

7 files changed

+34
-588
lines changed

build.sbt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ val bijectionVersion = "0.9.7"
66
val kryoVersion = "4.0.2"
77
val scroogeVersion = "21.2.0"
88
val asmVersion = "4.15"
9+
val protobufVersion = "3.17.1"
910

1011
def scalaVersionSpecificFolders(srcBaseDir: java.io.File, scalaVersion: String): List[File] =
1112
CrossVersion.partialVersion(scalaVersion) match {
@@ -260,8 +261,9 @@ lazy val chillProtobuf = module("protobuf")
260261
.settings(
261262
crossPaths := false,
262263
autoScalaLibrary := false,
263-
libraryDependencies ++= Seq(
264-
"com.google.protobuf" % "protobuf-java" % "2.3.0" % "provided"
264+
libraryDependencies += "com.google.protobuf" % "protobuf-java" % protobufVersion % Provided,
265+
Test / PB.targets := Seq(
266+
PB.gens.java(protobufVersion) -> (Test / sourceManaged).value
265267
)
266268
)
267269
.dependsOn(chillJava)

0 commit comments

Comments
 (0)