Skip to content

Commit

Permalink
Bump Scala version to 2.11.6 and SBT to 0.13.8
Browse files Browse the repository at this point in the history
  • Loading branch information
davidsoergel committed Mar 22, 2015
1 parent 5ecb54f commit 761462b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions project/Build.scala
Expand Up @@ -5,8 +5,8 @@ import java.io.File
object DavidSoergelSbtBaseBuild extends Build {

val davidsoergel = "com.davidsoergel"
val scalaV = "2.10.4"
val vers = "79-ds"
val scalaV = "2.11.6"
val vers = "80-ds"

val packageTemplate = TaskKey[File]("package-template")

Expand Down Expand Up @@ -38,7 +38,7 @@ object DavidSoergelSbtBaseBuild extends Build {
def publishToDavidSoergel(vers: String) = publishTo := {
def repo(name: String) = name at "http://dev.davidsoergel.com/nexus/content/repositories/" + name
val isSnapshot = vers.endsWith("SNAPSHOT")
val repoName = (if (isSnapshot) "snapshots" else "releases")
val repoName = if (isSnapshot) "snapshots" else "releases"
Some(repo(repoName))
}

Expand Down
4 changes: 2 additions & 2 deletions src/davidsoergel-sbt-base-template/project/build.properties
Expand Up @@ -5,5 +5,5 @@
#

# These are used only by the sbt runner script, not by sbt itself.
sbt.version=0.13.5
build.scala.versions=2.10.4
sbt.version=0.13.8
build.scala.versions=2.11.6

0 comments on commit 761462b

Please sign in to comment.