Skip to content

Commit

Permalink
Update chill-protobuf with protobuf 3.17.1 (#571)
Browse files Browse the repository at this point in the history
  • Loading branch information
regadas committed Jun 4, 2021
1 parent 93e4cba commit 0a34e50
Show file tree
Hide file tree
Showing 7 changed files with 34 additions and 588 deletions.
6 changes: 4 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ val bijectionVersion = "0.9.7"
val kryoVersion = "4.0.2"
val scroogeVersion = "21.2.0"
val asmVersion = "4.15"
val protobufVersion = "3.17.1"

def scalaVersionSpecificFolders(srcBaseDir: java.io.File, scalaVersion: String): List[File] =
CrossVersion.partialVersion(scalaVersion) match {
Expand Down Expand Up @@ -260,8 +261,9 @@ lazy val chillProtobuf = module("protobuf")
.settings(
crossPaths := false,
autoScalaLibrary := false,
libraryDependencies ++= Seq(
"com.google.protobuf" % "protobuf-java" % "2.3.0" % "provided"
libraryDependencies += "com.google.protobuf" % "protobuf-java" % protobufVersion % Provided,
Test / PB.targets := Seq(
PB.gens.java(protobufVersion) -> (Test / sourceManaged).value
)
)
.dependsOn(chillJava)
Expand Down
Loading

0 comments on commit 0a34e50

Please sign in to comment.