forked from LoyolaChicagoBooks/introcs-scala-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
31 lines (22 loc) · 1015 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
30
// build.sbt for example 'interview2'
// by George K. Thiruvathukal
//
// Generated by script/build.py
//
// This and the script may change at any time in the future,
// so please do not depend on the contents you see here.
name := "interview2"
// This allows us to keep the source code and tests in the base directory instead
// of the usual src/{main,test}/scala folder structure. Makes it easier for CS1
// students!
scalaSource in Compile := baseDirectory.value
scalaSource in Test := baseDirectory.value
scalaVersion := "2.11.5"
// UI library provided by George K. Thiruvathukal and Andy Harrington (based on C# book)
// Thanks to Konstantin for the Bintray integration!
resolvers += "loyolachicagocode@bintray" at "http://dl.bintray.com/loyolachicagocode/maven"
libraryDependencies += "edu.luc.cs" %% "introcs-scala-ui" % "0.1.11"
// JUnit Support
libraryDependencies += "com.novocode" % "junit-interface" % "0.11"
// ScalaTest Support
libraryDependencies += "org.scalatest" %% "scalatest" % "2.2.1"