-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathbuild.sbt
More file actions
21 lines (16 loc) · 828 Bytes
/
build.sbt
File metadata and controls
21 lines (16 loc) · 828 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
name := "tensorflow-java-client"
version := "1.0"
scalaVersion := "2.11.7"
unmanagedClasspath in Compile += file("lib/grpc-protobuf-1.1.0-SNAPSHOT.jar")
unmanagedClasspath in Compile += file("lib/grpc-protobuf-lite-1.1.0-SNAPSHOT.jar")
unmanagedClasspath in Compile += file("lib/grpc-core-1.1.0-SNAPSHOT.jar")
unmanagedClasspath in Compile += file("lib/grpc-stub-1.1.0-SNAPSHOT.jar")
unmanagedClasspath in Compile += file("lib/grpc-netty-1.1.0-SNAPSHOT.jar")
unmanagedClasspath in Compile += file("lib/grpc-context-1.1.0-SNAPSHOT.jar")
libraryDependencies ++= Seq(
"com.google.protobuf" % "protobuf-java" % "3.1.0",
"com.google.guava" % "guava" % "20.0",
"io.netty" % "netty-all" % "4.1.6.Final",
"com.google.census" % "census-api" % "0.2.0",
"io.netty" % "netty-tcnative-boringssl-static" % "1.1.33.Fork23"
)