-
Notifications
You must be signed in to change notification settings - Fork 22
/
build.sbt
37 lines (26 loc) · 1.09 KB
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import org.allenai.plugins.DockerBuildPlugin
organization := "org.allenai"
name := "pnp"
description := "Library for probabilistic neural programming"
version := "0.1.2"
scalaVersion := "2.11.8"
libraryDependencies ++= Seq(
"com.google.guava" % "guava" % "17.0",
"com.fasterxml.jackson.core" % "jackson-databind" % "2.2.3",
"com.fasterxml.jackson.core" % "jackson-core" % "2.2.3",
"com.fasterxml.jackson.core" % "jackson-annotations" % "2.2.3",
"net.sf.jopt-simple" % "jopt-simple" % "4.9",
"org.scalatest" %% "scalatest" % "3.0.0" % "test",
"io.spray" %% "spray-json" % "1.3.3"
)
licenses += ("Apache-2.0", url("https://www.apache.org/licenses/LICENSE-2.0"))
bintrayOrganization := Some("allenai")
bintrayRepository := "private"
fork := true
// Docker configuration
enablePlugins(DockerBuildPlugin)
dockerImageBase := "allenai-docker-private-docker.bintray.io/java-dynet"
dockerCopyMappings += ((file("lib"), "lib"))
dockerCopyMappings += ((file("data"), "data"))
dockerCopyMappings += ((file("experiments"), "experiments"))
// mainClass := Some("org.allenai.pnp.semparse.SemanticParserCli")