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, 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
}, },

View File

@ -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")