forked from labra/wesin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
49 lines (33 loc) · 1.4 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
import sbt._
import sbt.Keys._
import bintray.Plugin.bintraySettings
import bintray.Keys._
import scala.scalajs.sbtplugin.ScalaJSPlugin.ScalaJSKeys._
lazy val root = project.in(file("."))//.settings(crossScalaVersions := Seq("2.10.4", "2.11.1"))
Build.sharedSettings
version := Build.currentVersion
scalaVersion := "2.10.4"
libraryDependencies ++= Seq(
"commons-configuration" % "commons-configuration" % "1.7"
, "org.rogach" %% "scallop" % "0.9.1"
, "com.typesafe" % "config" % "1.2.0"
, "org.scala-lang" % "scala-compiler" % scalaVersion.value
, "com.assembla.scala-incubator" %% "graph-core" % "1.9.0"
, "org.apache.jena" % "jena-arq" % "2.11.1"
, "com.lihaoyi" %% "utest" % "0.1.3" % "test"
, "org.scalatest" %% "scalatest" % "2.1.3"
, "junit" % "junit" % "4.10" % "test"
, "org.openrdf.sesame" % "sesame-model" % "2.7.10"
, "es.weso" % "stateparser_2.10" % "0.0.2"
)
// testFrameworks += new TestFramework("utest.runner.JvmFramework")
addCompilerPlugin("com.lihaoyi" %% "acyclic" % "0.1.2")
autoCompilerPlugins := true
bintraySettings
Build.publishSettings
resourceGenerators in Test += Def.task {
val location = url("http://www.w3.org/2013/TurtleTests/TESTS.zip")
IO.unzipURL(location, resourceManaged.value / "downloadedTests").toSeq
}.taskValue
// resolvers += bintray.Opts.resolver.repo("weso", "weso-releases")
resolvers += "Bintray" at "http://dl.bintray.com/weso/weso-releases"