mirror of https://github.com/sbt/sbt.git
fix launcher re-publication.
* The rebundled sbt launcher is now pushed into the old location again.
This commit is contained in:
parent
9261652d41
commit
a28663f06d
13
build.sbt
13
build.sbt
|
|
@ -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".
|
||||
|
|
|
|||
Loading…
Reference in New Issue