Fix build to publish M6

This commit is contained in:
Eugene Yokota 2017-05-30 02:44:13 -04:00
parent 6e1e6ea384
commit d952dbb7ba
2 changed files with 6 additions and 4 deletions

View File

@ -96,7 +96,8 @@ lazy val sbtRoot: Project = (project in file("."))
otherRootSettings,
Transform.conscriptSettings(bundledLauncherProj),
publish := {},
publishLocal := {}
publishLocal := {},
skip in publish := true
)
// 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 =>
// TODO - Any sort of validation
"clean" ::
"conscript-configs" ::
"so compile" ::
"so publishSigned" ::
"conscriptConfigs" ::
"compile" ::
"publishSigned" ::
"bundledLauncherProj/publishLauncher" ::
state
},

View File

@ -10,3 +10,4 @@ addSbtPlugin("com.lucidchart" % "sbt-scalafmt" % "0.3")
// addSbtPlugin("com.typesafe.sbt" % "sbt-site" % "1.2.0")
addSbtPlugin("org.foundweekends" % "sbt-bintray" % "0.4.0")
addSbtPlugin("org.scala-sbt" % "sbt-contraband" % "0.3.0-M5")
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.1.0-M1")