Skip to content

Commit

Permalink
Bump SBT and update build.sbt slightly.
Browse files Browse the repository at this point in the history
  • Loading branch information
non committed May 24, 2017
1 parent ca9d5b3 commit 3219428
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ lazy val chainSettings = Seq(
organization := "org.spire-math",
licenses += ("MIT", url("http://opensource.org/licenses/MIT")),
homepage := Some(url("http://github.com/non/chain")),
scalaVersion := "2.11.11",
scalaVersion := "2.12.2",
crossScalaVersions := Seq("2.10.6", "2.11.11", "2.12.2"),
scalacOptions ++= Seq(
"-feature",
Expand All @@ -17,9 +17,9 @@ lazy val chainSettings = Seq(
publishMavenStyle := true,
publishArtifact in Test := false,
pomIncludeRepository := Function.const(false),
publishTo <<= (version).apply { v =>
publishTo := {
val nexus = "https://oss.sonatype.org/"
if (v.trim.endsWith("SNAPSHOT"))
if (isSnapshot.value)
Some("Snapshots" at nexus + "content/repositories/snapshots")
else
Some("Releases" at nexus + "service/local/staging/deploy/maven2")
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=0.13.13
sbt.version=0.13.15

0 comments on commit 3219428

Please sign in to comment.