summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--project/build/Project.scala4
1 files changed, 1 insertions, 3 deletions
diff --git a/project/build/Project.scala b/project/build/Project.scala
index 6a100fe..7a214aa 100644
--- a/project/build/Project.scala
+++ b/project/build/Project.scala
@@ -18,8 +18,6 @@ class Project(info: ProjectInfo) extends DefaultProject(info) with posterous.Pub
// -------------------------------------------------------------------------------------------------------------------
import Repositories._
- val snapshots = "snapshots" at "http://scala-tools.org/repo-snapshots"
-
// -------------------------------------------------------------------------------------------------------------------
// Dependencies
// -------------------------------------------------------------------------------------------------------------------
@@ -29,7 +27,7 @@ class Project(info: ProjectInfo) extends DefaultProject(info) with posterous.Pub
// -------------------------------------------------------------------------------------------------------------------
// Testing with Specs2
// -------------------------------------------------------------------------------------------------------------------
- val specs2 = "org.specs2" %% "specs2" % "1.6-SNAPSHOT" % "test" withSources()
+ val specs2 = "org.specs2" %% "specs2" % "1.5" % "test" withSources()
def specs2Framework = new TestFramework("org.specs2.runner.SpecsFramework")
override def testFrameworks = super.testFrameworks ++ Seq(specs2Framework)