-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.sbt
58 lines (39 loc) · 1.57 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
47
48
49
50
51
52
53
54
55
56
57
58
import sbtassembly.Plugin.{MergeStrategy, AssemblyKeys}
import AssemblyKeys._
import ls.Plugin.LsKeys
assemblySettings
mergeStrategy in assembly <<= (mergeStrategy in assembly) { (old) =>
{
case PathList(ps @ _*) if ps.last endsWith "CHANGES.txt" => MergeStrategy.discard
case PathList(ps @ _*) if ps.last endsWith "LICENSES.txt" => MergeStrategy.discard
case PathList(ps @ _*) if ps.last endsWith "ComponentVersion.class" => MergeStrategy.last
case x => old(x)
}
}
test in assembly := {}
name := "freebase2neo"
version := "0.3.0"
organization := "com.elegantcoding"
scalaVersion := "2.11.1"
scalacOptions ++= Seq("-encoding", "UTF-8", "-deprecation", "-unchecked", "-feature")
resolvers += "Elegant Coding Releases" at "http://elegantcoding.github.io/repo/releases"
libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "2.2.0" % "test",
"commons-io" % "commons-io" % "2.4" % "test",
"com.typesafe" % "config" % "1.0.2",
"org.neo4j" % "neo4j" % "2.1.5",
"ch.qos.logback" % "logback-classic" % "1.1.2",
"com.typesafe.scala-logging" %% "scala-logging-slf4j" % "2.1.2",
"com.elegantcoding" %% "status-console" % "0.1.0",
"com.elegantcoding" %% "rdf-processor" % "0.6.1"
)
fork in Test := true
javaOptions in Test += "-Xmx5g"
//seq(lsSettings :_*)
(LsKeys.tags in LsKeys.lsync) := Seq("rdf","neo4j", "neo")
(description in LsKeys.lsync) :=
"Convert RDF to neo4j."
instrumentSettings
coverallsSettings
CoverallsKeys.coverallsToken := Some("QlYKhxhAQsUyt8pYa2XsOKHOdcJGun7TE")
parallelExecution := false