-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
36 lines (26 loc) · 1.05 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
name := """spa-bpmn-instances-example"""
version := "0.0.1-SNAPSHOT"
lazy val root = (project in file(".")).enablePlugins(PlayScala)
scalaVersion := "2.11.7"
resolvers += Resolver.jcenterRepo
resolvers += "dl-john-ky" at "http://dl.john-ky.io/maven/releases"
libraryDependencies ++= Seq(
jdbc,
cache,
ws,
specs2 % Test
)
libraryDependencies ++= Seq(
"com.iheart" %% "play-swagger" % "0.1.5-RELEASE",
"org.openrdf.sesame" % "sesame-sail-memory" % "4.0.0",
"org.openrdf.sesame" % "sesame-repository-sail" % "4.0.0",
"org.openrdf.sesame" % "sesame-rio-jsonld" % "4.0.0",
"org.openrdf.sesame" % "sesame-rio-rdfxml" % "4.0.0",
"com.github.jsonld-java" % "jsonld-java" % "0.7.0",
"io.john-ky" %% "hashids-scala" % "1.1.0-b33fd4e"
)
libraryDependencies += "org.webjars" % "swagger-ui" % "2.1.2"
resolvers += "scalaz-bintray" at "http://dl.bintray.com/scalaz/releases"
// Play provides two styles of routers, one expects its actions to be injected, the
// other, legacy style, accesses its actions statically.
routesGenerator := InjectedRoutesGenerator