-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
24 lines (15 loc) · 840 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
name := "TankCommander"
organization := "de.htwg.se"
version := "0.0.1"
scalaVersion := "2.12.4"
libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.5" % "test"
libraryDependencies += "junit" % "junit" % "4.8" % "test"
//*******************************************************************************//
//Libraries that we will use in later lectures compatible with this scala version
// uncomment to use!!
libraryDependencies += "org.scala-lang.modules" % "scala-swing_2.12" % "2.0.1"
libraryDependencies += "com.google.inject" % "guice" % "4.1.0"
libraryDependencies += "net.codingwell" %% "scala-guice" % "4.1.0"
libraryDependencies += "org.scala-lang.modules" % "scala-xml_2.12" % "1.0.6"
libraryDependencies += "com.typesafe.play" %% "play-json" % "2.6.6"
libraryDependencies += "net.liftweb" %% "lift-json" % "3.0.1"