1import sbt._
2
3class MyProject(info: ProjectInfo) extends DefaultProject(info) {
4  val scalatest = "org.scalatest" %% "scalatest" % "1.6.1"
5  val junit4 = "junit" % "junit" % "4.8"
6  val junitInterface = "com.novocode" % "junit-interface" % "0.7"
7
8  override def artifactID = "jzlib"
9
10  override def compileOptions =
11     super.compileOptions ++compileOptions("-target:jvm-1.5")
12
13  override def testOptions =
14    super.testOptions ++
15    Seq(TestArgument(TestFrameworks.JUnit, "-q", "-v"))
16}
17