-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.sbt
25 lines (19 loc) · 920 Bytes
/
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
name := """zettel"""
version := "1.0-SNAPSHOT"
lazy val root = (project in file(".")).enablePlugins(PlayJava)
scalaVersion := "2.11.7"
libraryDependencies ++= Seq(
javaJdbc,
javaWs,
filters,
"org.eclipse.rdf4j" % "rdf4j-runtime" % "2.0.1",
"com.github.jsonld-java" % "jsonld-java" % "0.8.3",
"com.github.hbz" %"lobid-rdf-to-json" % "8dcd67c7aa7f4fb7b53e875ea0561a4fbb951f89",
"commons-validator" % "commons-validator" % "1.5.1",
"net.sf.supercsv" % "super-csv" % "2.4.0",
"junit" % "junit" % "4.11"
)
resolvers += "jitpack" at "https://jitpack.io"
EclipseKeys.preTasks := Seq(compile in Compile)
EclipseKeys.projectFlavor := EclipseProjectFlavor.Java // Java project. Don't expect Scala IDE
EclipseKeys.createSrc := EclipseCreateSrc.ValueSet(EclipseCreateSrc.ManagedClasses, EclipseCreateSrc.ManagedResources) // Use .class files instead of generated .scala files for views and routes