Skip to content

Commit

Permalink
Bumping version to 2.9-SNAPSHOT
Browse files Browse the repository at this point in the history
  • Loading branch information
karma4u101 committed Jun 27, 2014
1 parent af6c2d7 commit 227edcc
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
@@ -1,6 +1,6 @@
language: scala
scala:
- "2.10.0"
- "2.10.4"
- "2.9.2"
jdk:
- openjdk7
8 changes: 4 additions & 4 deletions build.sbt
Expand Up @@ -10,11 +10,11 @@ liftEdition in ThisBuild <<= liftVersion apply { _.substring(0,3) }

moduleName <<= (name, liftEdition) { (n, e) => n + "_" + e }

scalaVersion in ThisBuild := "2.10.0"
scalaVersion in ThisBuild := "2.10.4"

scalacOptions ++= Seq("-unchecked", "-deprecation")

crossScalaVersions := Seq("2.10.0", "2.9.2", "2.9.1-1", "2.9.1")
crossScalaVersions := Seq("2.10.4", "2.9.2", "2.9.1-1", "2.9.1")

logLevel := Level.Info

Expand All @@ -34,12 +34,12 @@ libraryDependencies <++= scalaVersion { sv =>
"log4j" % "log4j" % "1.2.16" % "provided" ::
(sv match {
case "2.11.1" => "org.specs2" %% "specs2" % "2.3.12" % "test"
case "2.10.0" | "2.9.2" | "2.9.1" | "2.9.1-1" => "org.specs2" %% "specs2" % "1.12.3" % "test"
case "2.10.4" | "2.9.2" | "2.9.1" | "2.9.1-1" => "org.specs2" %% "specs2" % "1.12.3" % "test"
case _ => "org.specs2" %% "specs2" % "1.12.3" % "test"
}) ::
(sv match {
case "2.11.1" => "org.scalacheck" %% "scalacheck" % "1.11.4" % "test"
case "2.10.0" | "2.9.2" => "org.scalacheck" %% "scalacheck" % "1.10.0" % "test"
case "2.10.4" | "2.9.2" => "org.scalacheck" %% "scalacheck" % "1.10.0" % "test"
case _ => "org.scalacheck" %% "scalacheck" % "1.10.0" % "test"
}) ::
Nil
Expand Down
4 changes: 2 additions & 2 deletions project/autobuildscript/build-publish-Lift25.txt
@@ -1,6 +1,6 @@
alias pub=publish-signed
alias pub=publish-local-signed

set version in ThisBuild:="2.8"
set version in ThisBuild:="2.9-SNAPSHOT"

set scalacOptions += "-target:jvm-1.5"
set javacOptions ++= Seq("-source", "1.5", "-target", "1.5")
Expand Down
4 changes: 2 additions & 2 deletions project/autobuildscript/build-publish-Lift26.txt
@@ -1,6 +1,6 @@
alias pub=publish-signed
alias pub=publish-local-signed

set version in ThisBuild:="2.8"
set version in ThisBuild:="2.9-SNAPSHOT"

set scalacOptions += "-target:jvm-1.5"
set javacOptions ++= Seq("-source", "1.5", "-target", "1.5")
Expand Down
6 changes: 3 additions & 3 deletions project/autobuildscript/build-publish-Lift3.txt
@@ -1,12 +1,12 @@
alias pub=publish-signed
alias pub=publish-local-signed

set version in ThisBuild:="2.8"
set version in ThisBuild:="2.9-SNAPSHOT"

set scalacOptions in ThisBuild += "-target:jvm-1.7"
set javacOptions in ThisBuild ++= Seq("-source", "1.7", "-target", "1.7")

set liftVersion in ThisBuild:="3.0-M1"
set scalaVersion in ThisBuild:="2.10.0"
set scalaVersion in ThisBuild:="2.10.4"

project lift-jquery-module
set parallelExecution in Test := false
Expand Down

0 comments on commit 227edcc

Please sign in to comment.