-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
29 lines (22 loc) · 1019 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
26
27
28
29
import sbtassembly.PathList
name := "neo4j-deletion-error"
version := "0.1.0"
scalaVersion := "2.11.8"
scalacOptions ++= Seq("-feature", "-deprecation", "-language:implicitConversions", "-Xmax-classfile-name", "128")
logLevel := Level.Warn
val http4sVersion = "0.15.3a"
libraryDependencies ++= Seq(
"org.scalaz" %% "scalaz-concurrent" % "7.2.8",
"org.apache.tinkerpop" % "neo4j-gremlin" % "3.2.4" exclude("com.github.jeremyh", "jBCrypt"),
"org.neo4j" % "neo4j-tinkerpop-api-impl" % "0.4-3.0.3",
"com.typesafe.scala-logging" %% "scala-logging" % "3.1.0",
"ch.qos.logback" % "logback-classic" % "1.2.1" // SLF4J implementation
)
assemblyMergeStrategy in assembly := {
case PathList(ps @ _*) if ps.last.equalsIgnoreCase("manifest.mf") => MergeStrategy.discard
case PathList("META-INF", _*) => MergeStrategy.filterDistinctLines
case PathList("pom.xml") => MergeStrategy.filterDistinctLines
case x =>
val oldStrategy = (assemblyMergeStrategy in assembly).value
oldStrategy(x)
}