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 =>
|
||||
// TODO - Any sort of validation
|
||||
"checkCredentials" ::
|
||||
"conscript-configs" ::
|
||||
"publishSigned" ::
|
||||
"publishLauncher" ::
|
||||
"release-libs-211" ::
|
||||
|
|
@ -315,7 +316,7 @@ object Sbt extends Build {
|
|||
autoScalaLibrary := false,
|
||||
description := "sbt application launcher",
|
||||
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(
|
||||
|
|
|
|||
Loading…
Reference in New Issue