fix launcher re-publication.

* The rebundled sbt launcher is now pushed into the old location again.
This commit is contained in:
Josh Suereth 2015-03-24 18:32:56 -04:00
parent 9261652d41
commit a28663f06d
1 changed files with 10 additions and 3 deletions

View File

@ -55,10 +55,17 @@ lazy val bundledLauncherProj =
(project in file("launch")).
settings(minimalSettings:_*).
settings(inConfig(Compile)(Transform.configSettings):_*).
settings(Release.launcherSettings(sbtLaunchJar):_*).
enablePlugins(SbtLauncherPlugin).
settings(
publish := {},
publishLocal := {}
name := "sbt-launch",
moduleName := "sbt-launch",
description := "sbt application launcher",
publishArtifact in packageSrc := false,
autoScalaLibrary := false,
publish := Release.deployLauncher.value,
publishLauncher := Release.deployLauncher.value,
packageBin in Compile := sbtLaunchJar.value
)
@ -601,7 +608,7 @@ def customCommands: Seq[Setting[_]] = Seq(
"conscript-configs" ::
"so compile" ::
"so publishSigned" ::
"publishLauncher" ::
"bundledLauncherProj/publishLauncher" ::
state
},
// stamp-version doesn't work with ++ or "so".