Skip to content
This repository has been archived by the owner on Sep 3, 2020. It is now read-only.

Commit

Permalink
Update sbt and Scala version
Browse files Browse the repository at this point in the history
  • Loading branch information
kiritsuku committed Aug 17, 2017
1 parent 80ad5e5 commit eca1884
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions build.sbt
@@ -1,9 +1,9 @@
name := "org.scala-refactoring.library"
version := "0.13.0-SNAPSHOT"
scalaVersion := "2.12.2"
scalaVersion := "2.12.3"
moduleName := name.value
organization := "org.scala-refactoring"
crossScalaVersions := Seq("2.10.6", "2.11.8", "2.12.2")
crossScalaVersions := Seq("2.10.6", "2.11.8", "2.12.2", "2.12.3")
crossVersion := CrossVersion.full
fork := true
parallelExecution in Test := false
Expand Down Expand Up @@ -63,9 +63,9 @@ Seq(Compile, Test).flatMap { config =>

publishMavenStyle := true
useGpg := true
publishTo <<= isSnapshot { isSnapshot =>
publishTo := {
val nexus = "https://oss.sonatype.org"
if (isSnapshot)
if (isSnapshot.value)
Some("snapshots" at s"$nexus/content/repositories/snapshots")
else
Some("releases" at s"$nexus/service/local/staging/deploy/maven2")
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
@@ -1 +1 @@
sbt.version=0.13.13
sbt.version=0.13.16

0 comments on commit eca1884

Please sign in to comment.