aboutsummaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2012-11-05 13:58:48 +0100
committerJason Zaugg <jzaugg@gmail.com>2012-11-05 16:32:01 +0100
commit3f36c1ea4b95ba046fa378ade19ca368e6e5c21b (patch)
tree7c292dd5483b87169f1c9c66ea449cb8d598ac63 /build.sbt
parent610e649174ba7fa699ba076aa5996af3f6de9519 (diff)
downloadscala-async-3f36c1ea4b95ba046fa378ade19ca368e6e5c21b.tar.gz
scala-async-3f36c1ea4b95ba046fa378ade19ca368e6e5c21b.tar.bz2
scala-async-3f36c1ea4b95ba046fa378ade19ca368e6e5c21b.zip
A minimal SBT build.
Doesn't execute tests yet.
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt9
1 files changed, 9 insertions, 0 deletions
diff --git a/build.sbt b/build.sbt
new file mode 100644
index 0000000..d4d9e1f
--- /dev/null
+++ b/build.sbt
@@ -0,0 +1,9 @@
+scalaVersion := "2.10.0-RC1"
+
+organization := "org.typesafe.async"
+
+name := "scala-async"
+
+version := "0.1-SNAPSHOT"
+
+libraryDependencies <+= (scalaVersion)("org.scala-lang" % "scala-reflect" % _)