Skip to content

Commit 7ac2cb5

Browse files
author
Mathias Bogaert
committed
Bump to SBT 0.13.13, replace usage of <<= operator.
1 parent 9d8f3ec commit 7ac2cb5

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

build.sbt

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,12 @@ libraryDependencies ++= Dependencies.scalaLogging(scalaVersion.value)
3131
initialCommands := """|import com.typesafe.scalalogging._
3232
|import org.slf4j.{ Logger => Underlying, _ }""".stripMargin
3333

34-
publishTo <<= isSnapshot(isSnapshot => Some(if (isSnapshot) Opts.resolver.sonatypeSnapshots else Opts.resolver.sonatypeStaging))
34+
publishTo := {
35+
if (isSnapshot.value)
36+
Some(Opts.resolver.sonatypeSnapshots)
37+
else
38+
Some(Opts.resolver.sonatypeStaging)
39+
}
3540
publishArtifact in Test := false
3641
pomIncludeRepository := (_ => false)
3742
pomExtra :=

project/build.properties

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

0 commit comments

Comments
 (0)