Last active
January 3, 2016 12:09
-
-
Save andypetrella/8461369 to your computer and use it in GitHub Desktop.
An sbt configuration for https://github.com/NightHacking/LambdasHacking.
Put this in "Code" and launch sbt. IT REQUIRES SBT > 0.13.1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
libraryDependencies += "junit" % "junit" % "4.11" % "test" | |
libraryDependencies += "com.novocode" % "junit-interface" % "0.10" % "test" | |
javaSource in Test := baseDirectory.value / "test" | |
testOptions += Tests.Argument(TestFrameworks.JUnit, "-q", "-v") | |
javacOptions ++= Seq("-source", "1.8") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#PUT THIS FILE IN `Code/project` | |
sbt.version=0.13.1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment