forked from allenai/tuffylite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
43 lines (30 loc) · 1.65 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
name := "tuffy-internal"
organization := "edu.stanford.hazy"
version := "0.4.2-SNAPSHOT"
description := "An internal version of Tuffy downloaded from: http://i.stanford.edu/hazy/tuffy/download/"
Publish.settings
publishArtifact in (Compile, packageDoc) := false // to avoid "javadoc: error - invalid flag: -target"
resolvers ++= Seq("AllenAI Snapshots" at "http://utility.allenai.org:8081/nexus/content/repositories/snapshots",
"AllenAI Releases" at "http://utility.allenai.org:8081/nexus/content/repositories/releases",
"Sonatype SNAPSHOTS" at "https://oss.sonatype.org/content/repositories/snapshots/",
"spray" at "http://repo.spray.io/",
"Typesafe Releases" at "http://repo.typesafe.com/typesafe/releases/")
resolvers ++= Seq("scala-tools.org" at "http://scala-tools.org/repo-releases",
"Sonatype SNAPSHOTS" at "https://oss.sonatype.org/content/repositories/snapshots/",
"conjars" at "http://conjars.org/repo",
"apache.releases" at "https://repository.apache.org/content/repositories/releases"
)
libraryDependencies ++= Seq(
"org.postgresql" % "postgresql" % "9.3-1102-jdbc41",
"org.antlr" % "antlr" % "3.2",
"args4j" % "args4j" % "2.0.16",
"org.apache.commons" % "commons-lang3" % "3.3",
"thirdparty" % "jgrapht-jdk1.6" % "0.8.2",
"org.apache.commons" % "commons-math" % "2.2",
"junit" % "junit" % "4.11"
)
//autoScalaLibrary := false
//crossPaths := false
EclipseKeys.projectFlavor := EclipseProjectFlavor.Java
compileOrder := CompileOrder.JavaThenScala
javaOptions += "-Xmx4G"