forked from allenai/pnp
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
50 lines (39 loc) · 1.27 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
38
39
40
41
42
43
44
45
46
47
48
49
50
organization := "com.jayantkrish.pnp"
name := "pnp"
description := "Library for probabilistic neural programming"
version := "0.1.3"
scalaVersion := "2.11.8"
libraryDependencies ++= Seq(
"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",
"com.google.guava" % "guava" % "17.0",
"com.jayantkrish.jklol" % "jklol" % "1.2.1",
"io.spray" %% "spray-json" % "1.3.3",
"net.sf.jopt-simple" % "jopt-simple" % "4.9",
"org.scalatest" %% "scalatest" % "3.0.0" % "test"
)
licenses += ("Apache-2.0", url("https://www.apache.org/licenses/LICENSE-2.0"))
homepage := Some(url("https://github.com/jayantk/pnp"))
publishMavenStyle := true
scmInfo := Some(
ScmInfo(
url("https://github.com/jayantk/pnp"),
"scm:git:git@github.com:jayantk/pnp.git"
)
)
developers := List(
Developer(
id = "jayantk",
name = "Jayant Krishnamurthy",
email = "jayantk@cs.cmu.edu",
url = url("http://cs.cmu.edu/~jayantk")
)
)
publishTo := {
val nexus = "https://oss.sonatype.org/"
if (isSnapshot.value)
Some("snapshots" at nexus + "content/repositories/snapshots")
else
Some("releases" at nexus + "service/local/staging/deploy/maven2")
}