-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
19 lines (16 loc) · 913 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
name := "Arschloch Extended"
organization := "de.htwg.se"
version := "1.0.0"
scalaVersion := "2.11.11"
scalacOptions := Seq("-unchecked", "-feature", "-deprecation", "-encoding", "utf8")
resolvers += Resolver.jcenterRepo
libraryDependencies += "junit" % "junit" % "4.11" % "test"
libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.1" % Test
libraryDependencies += "org.scalamock" %% "scalamock-scalatest-support" % "3.2.2" % Test
libraryDependencies += "org.scala-lang" % "scala-swing" % "2.11.0-M7"
libraryDependencies += "org.scalafx" %% "scalafx" % "8.0.92-R10"
libraryDependencies += "net.liftweb" % "lift-json_2.11" % "3.2.0-RC1"
libraryDependencies += "com.typesafe.scala-logging" %% "scala-logging" % "3.7.2"
libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.2.3"
libraryDependencies += "com.google.inject" % "guice" % "4.1.0"
parallelExecution in Test := false