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
This commit is contained in:
samskivert
2010-08-27 00:53:30 +00:00
parent 08fa16d2d8
commit 1002d68495
2 changed files with 16 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
#Project properties
#Thu Aug 26 17:11:09 PDT 2010
project.organization=MDB and Friends
project.name=samskivert
sbt.version=0.7.4
project.version=1.0
build.scala.versions=2.8.0
project.initialize=false
+8
View File
@@ -0,0 +1,8 @@
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")
}