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")).
|
(project in file("launch")).
|
||||||
settings(minimalSettings:_*).
|
settings(minimalSettings:_*).
|
||||||
settings(inConfig(Compile)(Transform.configSettings):_*).
|
settings(inConfig(Compile)(Transform.configSettings):_*).
|
||||||
|
settings(Release.launcherSettings(sbtLaunchJar):_*).
|
||||||
enablePlugins(SbtLauncherPlugin).
|
enablePlugins(SbtLauncherPlugin).
|
||||||
settings(
|
settings(
|
||||||
publish := {},
|
name := "sbt-launch",
|
||||||
publishLocal := {}
|
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" ::
|
"conscript-configs" ::
|
||||||
"so compile" ::
|
"so compile" ::
|
||||||
"so publishSigned" ::
|
"so publishSigned" ::
|
||||||
"publishLauncher" ::
|
"bundledLauncherProj/publishLauncher" ::
|
||||||
state
|
state
|
||||||
},
|
},
|
||||||
// stamp-version doesn't work with ++ or "so".
|
// stamp-version doesn't work with ++ or "so".
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue