Skip to content

Instantly share code, notes, and snippets.

@xanderdunn
Created August 23, 2015 23:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xanderdunn/0e69254bc1bb2cca6f29 to your computer and use it in GitHub Desktop.
Save xanderdunn/0e69254bc1bb2cca6f29 to your computer and use it in GitHub Desktop.
Trying to figure out Scala code coverage
name := "ticTacToe"
version := "1.0"
scalaVersion := "2.11.7"
resolvers ++= Seq(
// other resolvers here
// if you want to use snapshot builds (currently 0.12-SNAPSHOT), use this.
"Sonatype Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots/",
"Sonatype Releases" at "https://oss.sonatype.org/content/repositories/releases/"
)
resolvers += Classpaths.sbtPluginReleases
libraryDependencies ++= Seq(
"org.scalanlp" %% "breeze" % "0.11.2",
"org.scalanlp" %% "breeze-natives" % "0.11.2",
"org.scalanlp" %% "breeze-viz" % "0.11.2"
)
libraryDependencies += "org.scalatest" % "scalatest_2.11" % "2.2.4" % "test"
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.0.4")
addSbtPlugin("org.scoverage" % "sbt-coveralls" % "1.0.0")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment