blob: 7b4b63ac59b491b826effea3ddc47ba00f0e709d [file] [log] [blame]
import scalapb.compiler.Version.{grpcJavaVersion, scalapbVersion}
scalaVersion := "2.12.4"
PB.targets in Compile := Seq(
scalapb.gen() -> (sourceManaged in Compile).value
)
libraryDependencies ++= Seq(
"com.thesamet.scalapb" %% "scalapb-runtime" % scalapbVersion % "protobuf",
// for gRPC
"io.grpc" % "grpc-netty" % grpcJavaVersion,
"com.thesamet.scalapb" %% "scalapb-runtime-grpc" % scalapbVersion,
// for JSON conversion
"com.thesamet.scalapb" %% "scalapb-json4s" % "0.7.0"
)
scalacOptions in ThisBuild ++= Seq("-unchecked", "-deprecation")