forked from PyWaves/WavesDataFeed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
32 lines (28 loc) · 1.29 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
import com.typesafe.config.ConfigFactory
import sbt.Keys._
val appConf = ConfigFactory.parseFile(new File("src/main/resources/reference.conf")).resolve().getConfig("app")
organization in ThisBuild := "com.amurhost"
name := "wdf"
version := appConf.getString("version")
scalaVersion := "2.12.1"
libraryDependencies ++= Seq( "org.scala-lang" % "scala-swing" % "2.10+",
"com.github.scopt" %% "scopt" % "3.5.0",
"com.h2database" % "h2-mvstore" % "1.4.196",
"ch.qos.logback" % "logback-classic" % "1.1.9",
"com.github.swagger-akka-http" % "swagger-akka-http_2.12" % "0.9.1",
"com.typesafe.akka" % "akka-actor_2.12" % "2.4.17",
"com.typesafe.akka" % "akka-http_2.12" % "10.0.4",
"com.typesafe.akka" % "akka-http-core_2.12" % "10.0.4",
"com.typesafe.akka" % "akka-slf4j_2.12" % "2.4.17",
"com.typesafe.akka" % "akka-stream_2.12" % "2.4.17",
"com.typesafe.play" % "play-json_2.12" % "2.6.0-M4",
"com.typesafe" % "config" % "1.3.1",
"io.swagger" % "swagger-annotations" % "1.5.12",
"io.swagger" % "swagger-jaxrs" % "1.5.12",
"io.swagger" % "swagger-models" % "1.5.12",
"org.scalaj" % "scalaj-http_2.12" % "2.3.0",
"org.slf4j" % "slf4j-api" % "1.7.24",
"com.iheart" % "ficus_2.12" % "1.4.0",
"org.scorexfoundation" %% "scrypto" % "1.2.0"
)
assemblyJarName in assembly := s"${name.value}-${version.value}.jar"