mirror of https://github.com/sbt/sbt.git
Merge pull request #326 from eed3si9n/wip/nightly
add hook for nightly build
This commit is contained in:
commit
f8a8371057
|
|
@ -366,6 +366,14 @@ def customCommands: Seq[Setting[_]] = Seq(
|
|||
}
|
||||
)
|
||||
|
||||
ThisBuild / publishTo := {
|
||||
val old = (ThisBuild / publishTo).value
|
||||
sys.props.get("sbt.build.localmaven") match {
|
||||
case Some(path) => Some(MavenCache("local-maven", file(path)))
|
||||
case _ => old
|
||||
}
|
||||
}
|
||||
|
||||
inThisBuild(
|
||||
Seq(
|
||||
whitesourceProduct := "Lightbend Reactive Platform",
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ object Dependencies {
|
|||
|
||||
def nightlyVersion: Option[String] = sys.props.get("sbt.build.version")
|
||||
|
||||
private val ioVersion = nightlyVersion.getOrElse("1.3.1")
|
||||
private val ioVersion = nightlyVersion.getOrElse("1.4.0-M2")
|
||||
private val utilVersion = nightlyVersion.getOrElse("1.3.2")
|
||||
|
||||
private val sbtIO = "org.scala-sbt" %% "io" % ioVersion
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
sbt.version=1.3.3
|
||||
sbt.version=1.3.6
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
addSbtPlugin("com.dwijnand" % "sbt-dynver" % "4.0.0")
|
||||
addSbtPlugin("org.foundweekends" % "sbt-bintray" % "0.5.5")
|
||||
addSbtPlugin("org.foundweekends" % "sbt-bintray" % "0.5.6")
|
||||
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "2.0.0")
|
||||
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "0.6.1")
|
||||
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.0.2")
|
||||
|
|
|
|||
Loading…
Reference in New Issue