Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/no-carrier.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Rebert <code@rebertia.com>2014-10-31 10:22:34 +0300
committerChris Rebert <code@rebertia.com>2014-10-31 10:25:59 +0300
commitfca34b188bf9953ff5539d2f000d31e8d22fb385 (patch)
tree0572eb8e5573d6a8bccf8734d6458ff8b33a216a /build.sbt
initial scaffolding
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt21
1 files changed, 21 insertions, 0 deletions
diff --git a/build.sbt b/build.sbt
new file mode 100644
index 0000000..4962a12
--- /dev/null
+++ b/build.sbt
@@ -0,0 +1,21 @@
+name := "no-carrier"
+
+version := "1.0"
+
+scalaVersion := "2.10.4"
+
+mainClass := Some("com.getbootstrap.no_carrier.Main")
+
+resolvers ++= Seq("snapshots", "releases").map(Resolver.sonatypeRepo)
+
+libraryDependencies += "org.eclipse.mylyn.github" % "org.eclipse.egit.github.core" % "2.1.5"
+
+libraryDependencies += "org.specs2" %% "specs2" % "2.3.12" % "test"
+
+scalacOptions := Seq("-unchecked", "-deprecation", "-feature", "–Xlint", "-encoding", "utf8")
+
+scalacOptions in Test ++= Seq("-Yrangepos")
+
+// parallelExecution in Test := false
+
+Revolver.settings