-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.sbt
43 lines (27 loc) · 1.12 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 := """Wesby"""
version := "2.0-SNAPSHOT"
lazy val root = (project in file(".")).enablePlugins(PlayScala)
scalaVersion := "2.11.6"
libraryDependencies ++= Seq(
jdbc,
cache,
ws,
specs2 % Test
)
resolvers += "scalaz-bintray" at "http://dl.bintray.com/scalaz/releases"
resolvers += "weso-bintray" at "http://dl.bintray.com/weso/weso-releases"
resolvers += "labra-bintray" at " https://dl.bintray.com/labra/maven"
// Play provides two styles of routers, one expects its actions to be injected, the
// other, legacy style, accesses its actions statically.
routesGenerator := InjectedRoutesGenerator
// Banana RDF
libraryDependencies += "org.w3" %% "banana-rdf" % "0.8.1"
libraryDependencies += "org.w3" %% "banana-jena" % "0.8.1"
libraryDependencies += "org.w3" %% "banana-sesame" % "0.8.1"
libraryDependencies += "org.w3" %% "banana-plantain" % "0.8.1"
libraryDependencies += "org.w3" % "ldp-testsuite" % "0.1.1"
// code coverage
ScoverageSbtPlugin.ScoverageKeys.coverageMinimum := 80
ScoverageSbtPlugin.ScoverageKeys.coverageFailOnMinimum := false
// ShExcala
libraryDependencies += "es.weso" % "shexcala_2.11" % "0.7.8"