From b566967dd70e4a73bd7f0935a8cb8e50086d2194 Mon Sep 17 00:00:00 2001 From: samskivert Date: Fri, 27 Aug 2010 08:39:40 +0000 Subject: [PATCH] Nixed SBT-based build. SBT ended up being a little too Scala-focused. git-svn-id: https://samskivert.googlecode.com/svn/trunk@2816 6335cc39-0255-0410-8fd6-9bcaacd3b74c --- project/build.properties | 8 -------- project/build/Samskivert.scala | 21 --------------------- 2 files changed, 29 deletions(-) delete mode 100644 project/build.properties delete mode 100644 project/build/Samskivert.scala diff --git a/project/build.properties b/project/build.properties deleted file mode 100644 index 8dc65a90..00000000 --- a/project/build.properties +++ /dev/null @@ -1,8 +0,0 @@ -#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 diff --git a/project/build/Samskivert.scala b/project/build/Samskivert.scala deleted file mode 100644 index 7afd0da9..00000000 --- a/project/build/Samskivert.scala +++ /dev/null @@ -1,21 +0,0 @@ -import sbt._ - -class Samskivert (info :ProjectInfo) extends DefaultProject(info) -{ - // interfaces JUnit with SBT, also adds JUnit4 dependency - val junitInterface = "com.novocode" % "junit-interface" % "0.4" % "test->default" - - // samskivert dependencies - val servlet = "javax.servlet" % "servlet-api" % "2.5" - val mail = "javax.mail" % "mail" % "1.4.1" - val collections = "commons-collections" % "commons-collections" % "3.2.1" - val digester = "commons-digester" % "commons-digester" % "2.0" - val log4j = "log4j" % "log4j" % "1.2.15" intransitive() // it depends on JMS, we don't - - // exclude a test that looks like a test, but isn't - override def testOptions = ExcludeTests("com.samskivert.util.IntSetTestBase" :: Nil) :: - super.testOptions.toList - - // set the test_dir system property, needed by some of the unit tests - System.setProperty("test_dir", "target/scala_2.8.0/test-resources") -}