aboutsummaryrefslogtreecommitdiffstats
path: root/build.sbt
blob: da2c8410677c8a77b2fcf4c8cc7604d51ffa2dec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
name         := "scala-test-builder"

version      := "0.01"

scalaVersion := "2.10.0"

libraryDependencies += "org.scalatest" % "scalatest_2.10" % "1.9.1" % "test"

libraryDependencies += "org.scala-tools.testing" % "test-interface" % "0.5"

scalacOptions ++= Seq("-deprecation", "-unchecked", "-feature")

testFrameworks += new TestFramework("org.perl8.test.sbt.Framework")