-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
29 lines (24 loc) · 1003 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
name := "StoicKit"
version := "0.1"
scalaVersion := "2.12.3"
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-http" % "10.0.10",
"com.typesafe.akka" %% "akka-http-spray-json" % "10.0.10",
"com.typesafe.akka" %% "akka-stream" % "2.5.4",
"com.typesafe.akka" %% "akka-actor" % "2.5.4",
"com.typesafe" % "config" % "1.3.1",
"com.typesafe.slick" %% "slick" % "3.2.1",
"org.slf4j" % "slf4j-nop" % "1.6.4", // For slick
"com.typesafe.slick" %% "slick-hikaricp" % "3.2.1", // For Slick
"mysql" % "mysql-connector-java" % "5.1.+",
"org.xerial" % "sqlite-jdbc" % "3.7.2",
"com.github.t3hnar" %% "scala-bcrypt" % "3.0",
"io.getquill" %% "quill-async-mysql" % "2.3.0"
)
mainClass in Compile := Some("stoickit.StoicKit")
exportJars := true
artifactName := { (sv: ScalaVersion, module: ModuleID, artifact: Artifact) =>
artifact.name + "-" + module.revision + "." + artifact.extension
}
assemblyJarName in assembly := s"stoic-kit.jar"
mainClass in assembly := Some("stoickit.StoicKit")