-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.sbt
36 lines (30 loc) · 979 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
30
31
32
33
34
35
36
name := "dota-assistant"
version := "1.0"
scalaVersion := "2.12.2"
libraryDependencies ++= Seq(
// html scraper for dotabuff
"net.ruippeixotog" %% "scala-scraper" % "2.0.0-RC2",
// scala test
"org.scalactic" %% "scalactic" % "3.0.1",
"org.scalatest" %% "scalatest" % "3.0.1" % "test",
// async http client
"net.databinder.dispatch" %% "dispatch-core" % "0.13.0",
// configuration
"com.github.pureconfig" %% "pureconfig" % "0.7.2",
// GUI
"org.scalafx" %% "scalafx" % "8.0.102-R11",
// async
"io.monix" %% "monix" % "2.3.0"
)
val circeVersion = "0.8.0"
libraryDependencies ++= Seq(
"io.circe" %% "circe-core",
"io.circe" %% "circe-generic",
"io.circe" %% "circe-parser"
).map(_ % circeVersion)
mainClass in assembly := Some("com.pinguinson.dotaassistant.Assistant")
assemblyJarName in assembly := "assistant.jar"
assemblyMergeStrategy in assembly := {
case PathList("META-INF", _*) => MergeStrategy.discard
case _ => MergeStrategy.first
}