Files
samskivert/project/build/Samskivert.scala
T
samskivert 1002d68495 A basic SBT build system which I'll most likely eventually use to publish to
the centralized Maven repository.


git-svn-id: https://samskivert.googlecode.com/svn/trunk@2811 6335cc39-0255-0410-8fd6-9bcaacd3b74c
2010-08-27 00:53:30 +00:00

9 lines
239 B
Scala

import sbt._
class Samskivert (info :ProjectInfo) extends DefaultProject(info)
{
val junitInterface = "com.novocode" % "junit-interface" % "0.4" % "test->default"
System.setProperty("test_dir", "target/scala_2.8.0/test-resources")
}