diff --git a/build.sbt b/build.sbt index 28965d74a..acc8b4260 100644 --- a/build.sbt +++ b/build.sbt @@ -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 }, diff --git a/project/plugins.sbt b/project/plugins.sbt index 38b70af79..b6eb790fe 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -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")