aboutsummaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
authorVlad Ureche <vlad.ureche@gmail.com>2014-01-23 21:24:57 +0100
committerVlad Ureche <vlad.ureche@gmail.com>2014-01-23 21:40:58 +0100
commite41f4fdd0efd9b19d5363def8ecb057fc6326d57 (patch)
tree619f6dc7f8e57b8c3978da505550c34e55ce40f1 /build.sbt
parent0e8d0bb1fbe557665f4db9edcd51dc4c49a7ae15 (diff)
downloaddotty-e41f4fdd0efd9b19d5363def8ecb057fc6326d57.tar.gz
dotty-e41f4fdd0efd9b19d5363def8ecb057fc6326d57.tar.bz2
dotty-e41f4fdd0efd9b19d5363def8ecb057fc6326d57.zip
Build infrastructure
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt13
1 files changed, 7 insertions, 6 deletions
diff --git a/build.sbt b/build.sbt
index 8e84bd19c..1891b2105 100644
--- a/build.sbt
+++ b/build.sbt
@@ -1,13 +1,14 @@
+
name := "dotty"
-organization := "lamp"
+scalaVersion in Global := "2.11.0-M7"
-scalaVersion := "2.10.0"
+version in Global := "0.1-SNAPSHOT"
-scalaSource in Compile <<= baseDirectory / "src"
+organization in Global := "org.scala-lang"
-scalacOptions in Global ++= Seq("-feature", "-deprecation", "-language:_")
+organizationName in Global := "LAMP/EPFL"
-libraryDependencies <+= scalaVersion ( sv => "org.scala-lang" % "scala-reflect" % sv )
+organizationHomepage in Global := Some(url("http://lamp.epfl.ch"))
-scalaSource in Test <<= baseDirectory / "test" \ No newline at end of file
+homepage in Global := Some(url("http://scala-lang.org"))