-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.sbt
40 lines (22 loc) · 1.16 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
name := "immortan"
version := "0.1"
scalaVersion := "2.11.12"
libraryDependencies += "org.scodec" % "scodec-core_2.11" % "1.11.3"
libraryDependencies += "commons-codec" % "commons-codec" % "1.10"
libraryDependencies += "io.reactivex" % "rxscala_2.11" % "0.27.0"
libraryDependencies += "org.json4s" % "json4s-native_2.11" % "3.6.7" // Electrum
libraryDependencies += "io.spray" % "spray-json_2.11" % "1.3.5" // Immortan
libraryDependencies += "com.typesafe.akka" % "akka-actor_2.11" % "2.3.14"
libraryDependencies += "io.netty" % "netty-all" % "4.1.42.Final"
libraryDependencies += "com.softwaremill.quicklens" % "quicklens_2.11" % "1.6.1"
libraryDependencies += "org.bouncycastle" % "bcprov-jdk15to18" % "1.68"
libraryDependencies += "com.google.guava" % "guava" % "29.0-android"
// Testing
libraryDependencies += "org.scalatest" % "scalatest_2.11" % "3.1.1"
libraryDependencies += "com.typesafe.akka" % "akka-testkit_2.11" % "2.5.32"
libraryDependencies += "org.xerial" % "sqlite-jdbc" % "3.27.2.1"
parallelExecution in Test := false
assemblyMergeStrategy in assembly := {
case n if n.startsWith("META-INF") => MergeStrategy.discard
case _ => MergeStrategy.first
}