From 92f6e0932f672a6b0fa7d635898f9005233aff00 Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Fri, 22 Jul 2011 15:56:43 -0700 Subject: [PATCH] Added an SBT build. --- build.sbt | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 build.sbt diff --git a/build.sbt b/build.sbt new file mode 100644 index 0000000..bb20bf6 --- /dev/null +++ b/build.sbt @@ -0,0 +1,14 @@ +name := "pythagoras" + +version := "1.1-SNAPSHOT" + +organization := "com.samskivert" + +crossPaths := false + +javacOptions ++= Seq("-Xlint", "-Xlint:-serial") + +libraryDependencies ++= Seq( + "junit" % "junit" % "4.+" % "test", + "com.novocode" % "junit-interface" % "0.7" % "test->default" +)