-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
60 lines (32 loc) · 1.89 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
name := "Reversi"
version := "1.0"
scalaVersion := "2.11.4"
// initialCommands in console := "import scalaz._, Scalaz._, nightra.reversi._, model._, ai._, util._"
resolvers += "bintray/non" at "http://dl.bintray.com/non/maven"
// Kind projector! Yay!
addCompilerPlugin("org.spire-math" % "kind-projector_2.11" % "0.5.2")
assemblyJarName in assembly := "Reversi.jar"
mainClass in assembly := Some("nightra.reversi.ui.UI")
test in assembly := {}
proguardSettings
ProguardKeys.proguardVersion in Proguard := "5.0"
ProguardKeys.options in Proguard ++= Seq("-dontnote", "-dontwarn", "-ignorewarnings")
ProguardKeys.options in Proguard += ProguardOptions.keepMain("nightra.reversi.ui.UI")
net.virtualvoid.sbt.graph.Plugin.graphSettings
javaOptions in (Proguard, proguard) := Seq("-Xms2G","-Xmx2G")
libraryDependencies += ("org.scalaz" %% "scalaz-core" % "7.1.0"
exclude("org.scala-lang.modules", "scala-parser-combinators_2.11")
exclude("org.scala-lang.modules", "scala-xml_2.11"))
libraryDependencies += "org.scalaz" %% "scalaz-effect" % "7.1.0"
libraryDependencies += "org.scalaz" %% "scalaz-concurrent" % "7.1.0"
libraryDependencies += "org.specs2" %% "specs2-scalacheck" % "2.4.13" % "test"
libraryDependencies += "org.scalacheck" %% "scalacheck" % "1.11.6" % "test"
libraryDependencies += "org.scalaz" %% "scalaz-scalacheck-binding" % "7.1.0" % "test"
libraryDependencies += "org.typelevel" %% "scalaz-specs2" % "0.3.0" % "test"
libraryDependencies += "org.scalafx" %% "scalafx" % "8.0.20-R6"
libraryDependencies += "org.controlsfx" % "controlsfx" % "8.20.8"
// libraryDependencies += "org.reactfx" % "reactfx" % "1.4.1"
// libraryDependencies += "org.fxmisc.easybind" % "easybind" % "1.0.3"
// libraryDependencies += "com.scalarx" %% "scalarx" % "0.2.6"
libraryDependencies += "org.abego.treelayout" % "org.abego.treelayout.core" % "1.0.1"
fork := true