mirror of https://github.com/sbt/sbt.git
Fix build to publish M6
This commit is contained in:
parent
6e1e6ea384
commit
d952dbb7ba
|
|
@ -96,7 +96,8 @@ lazy val sbtRoot: Project = (project in file("."))
|
||||||
otherRootSettings,
|
otherRootSettings,
|
||||||
Transform.conscriptSettings(bundledLauncherProj),
|
Transform.conscriptSettings(bundledLauncherProj),
|
||||||
publish := {},
|
publish := {},
|
||||||
publishLocal := {}
|
publishLocal := {},
|
||||||
|
skip in publish := true
|
||||||
)
|
)
|
||||||
|
|
||||||
// This is used to configure an sbt-launcher for this version of sbt.
|
// This is used to configure an sbt-launcher for this version of sbt.
|
||||||
|
|
@ -500,9 +501,9 @@ def customCommands: Seq[Setting[_]] = Seq(
|
||||||
commands += Command.command("release-sbt") { state =>
|
commands += Command.command("release-sbt") { state =>
|
||||||
// TODO - Any sort of validation
|
// TODO - Any sort of validation
|
||||||
"clean" ::
|
"clean" ::
|
||||||
"conscript-configs" ::
|
"conscriptConfigs" ::
|
||||||
"so compile" ::
|
"compile" ::
|
||||||
"so publishSigned" ::
|
"publishSigned" ::
|
||||||
"bundledLauncherProj/publishLauncher" ::
|
"bundledLauncherProj/publishLauncher" ::
|
||||||
state
|
state
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -10,3 +10,4 @@ addSbtPlugin("com.lucidchart" % "sbt-scalafmt" % "0.3")
|
||||||
// addSbtPlugin("com.typesafe.sbt" % "sbt-site" % "1.2.0")
|
// addSbtPlugin("com.typesafe.sbt" % "sbt-site" % "1.2.0")
|
||||||
addSbtPlugin("org.foundweekends" % "sbt-bintray" % "0.4.0")
|
addSbtPlugin("org.foundweekends" % "sbt-bintray" % "0.4.0")
|
||||||
addSbtPlugin("org.scala-sbt" % "sbt-contraband" % "0.3.0-M5")
|
addSbtPlugin("org.scala-sbt" % "sbt-contraband" % "0.3.0-M5")
|
||||||
|
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.1.0-M1")
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue