mirror of https://github.com/sbt/sbt.git
Merge pull request #1585 from sbt/wip/manual-conscript-generation
Remove automated conscript generation and only generate on release
This commit is contained in:
commit
ba97cf87de
|
|
@ -65,6 +65,7 @@ object Sbt extends Build {
|
||||||
commands += Command.command("release-sbt") { state =>
|
commands += Command.command("release-sbt") { state =>
|
||||||
// TODO - Any sort of validation
|
// TODO - Any sort of validation
|
||||||
"checkCredentials" ::
|
"checkCredentials" ::
|
||||||
|
"conscript-configs" ::
|
||||||
"publishSigned" ::
|
"publishSigned" ::
|
||||||
"publishLauncher" ::
|
"publishLauncher" ::
|
||||||
"release-libs-211" ::
|
"release-libs-211" ::
|
||||||
|
|
@ -315,7 +316,7 @@ object Sbt extends Build {
|
||||||
autoScalaLibrary := false,
|
autoScalaLibrary := false,
|
||||||
description := "sbt application launcher",
|
description := "sbt application launcher",
|
||||||
publishLauncher <<= Release.deployLauncher,
|
publishLauncher <<= Release.deployLauncher,
|
||||||
packageBin in Compile <<= (proguard in Proguard, Transform.conscriptConfigs).map((x, y) => x)
|
packageBin in Compile <<= proguard in Proguard
|
||||||
)
|
)
|
||||||
|
|
||||||
def interfaceSettings = javaOnly ++ Seq(
|
def interfaceSettings = javaOnly ++ Seq(
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue