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

Commit f3a3d94

Browse files
authored
Merge pull request #195 from sschaef/update
Update sbt and Scala version
2 parents 80ad5e5 + eca1884 commit f3a3d94

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

build.sbt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name := "org.scala-refactoring.library"
22
version := "0.13.0-SNAPSHOT"
3-
scalaVersion := "2.12.2"
3+
scalaVersion := "2.12.3"
44
moduleName := name.value
55
organization := "org.scala-refactoring"
6-
crossScalaVersions := Seq("2.10.6", "2.11.8", "2.12.2")
6+
crossScalaVersions := Seq("2.10.6", "2.11.8", "2.12.2", "2.12.3")
77
crossVersion := CrossVersion.full
88
fork := true
99
parallelExecution in Test := false
@@ -63,9 +63,9 @@ Seq(Compile, Test).flatMap { config =>
6363

6464
publishMavenStyle := true
6565
useGpg := true
66-
publishTo <<= isSnapshot { isSnapshot =>
66+
publishTo := {
6767
val nexus = "https://oss.sonatype.org"
68-
if (isSnapshot)
68+
if (isSnapshot.value)
6969
Some("snapshots" at s"$nexus/content/repositories/snapshots")
7070
else
7171
Some("releases" at s"$nexus/service/local/staging/deploy/maven2")

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=0.13.13
1+
sbt.version=0.13.16

0 commit comments

Comments
 (0)