Remove automated conscript generation and only generate on release.

Fixes #1558.

Note: This may mean conscript is updated less frequently, but
is better than the alternative.
This commit is contained in:
Josh Suereth 2014-09-09 10:44:32 -04:00
parent 9a60ca7da9
commit 5ceb247c0a
1 changed files with 6 additions and 5 deletions

View File

@ -65,10 +65,11 @@ object Sbt extends Build {
commands += Command.command("release-sbt") { state =>
// TODO - Any sort of validation
"checkCredentials" ::
"publishSigned" ::
"publishLauncher" ::
"release-libs-211" ::
state
"conscript-configs" ::
"publishSigned" ::
"publishLauncher" ::
"release-libs-211" ::
state
}
)
@ -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(