-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.sbt
executable file
·36 lines (25 loc) · 1.14 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
name := "Archivum"
version := "0.3.2"
scalaVersion := "2.12.4"
scalacOptions += "-Ypartial-unification"
libraryDependencies += "org.typelevel" %% "cats-core" % "1.0.1"
libraryDependencies += "org.scalafx" %% "scalafx" % "8.0.144-R12"
libraryDependencies += "io.spray" %% "spray-json" % "1.3.3"
// https://mvnrepository.com/artifact/org.scala-lang.modules/scala-xml
libraryDependencies += "org.scala-lang.modules" %% "scala-xml" % "1.0.6"
// Scala 2.10, 2.11, 2.12
libraryDependencies ++= Seq(
"org.scalikejdbc" %% "scalikejdbc" % "3.2.1",
"com.h2database" % "h2" % "1.4.196",
"ch.qos.logback" % "logback-classic" % "1.2.3"
)
// https://mvnrepository.com/artifact/org.controlsfx/controlsfx
libraryDependencies += "org.controlsfx" % "controlsfx" % "8.40.14"
libraryDependencies += "org.typelevel" %% "cats-core" % "1.0.1"
libraryDependencies += "org.parboiled" %% "parboiled" % "2.1.5"
libraryDependencies ++= Seq(
"com.norbitltd" %% "spoiwo" % "1.4.1"
)
// TODO assembly setup
mainClass in assembly := Some("com.radeusgd.archivum.gui.ApplicationMain")
libraryDependencies += "org.scala-lang" % "scala-compiler" % "2.12.4"