Push build.snapshot to BWC builds too

We need to push this flag down to the command line for BWC builds or the
artifacts in release tests will have the wrong version (being considered
snapshots instead of non-snapshots).

Original commit: elastic/x-pack-elasticsearch@279fd02aa7
This commit is contained in:
Jason Tedor 2018-01-09 12:47:42 -05:00
parent f73a7803ce
commit 374ab447f7
1 changed files with 1 additions and 1 deletions

View File

@ -192,7 +192,7 @@ subprojects {
} else { } else {
executable = new File(xpackCheckoutDir, 'gradlew').toString() executable = new File(xpackCheckoutDir, 'gradlew').toString()
} }
final ArrayList<String> commandLineArgs = [":x-pack-elasticsearch:plugin:assemble"] final ArrayList<String> commandLineArgs = [":x-pack-elasticsearch:plugin:assemble", "-Dbuild.snapshot=${System.getProperty('build.snapshot') ?: 'true'}"]
final LogLevel logLevel = gradle.startParameter.logLevel final LogLevel logLevel = gradle.startParameter.logLevel
if ([LogLevel.QUIET, LogLevel.WARN, LogLevel.INFO, LogLevel.DEBUG].contains(logLevel)) { if ([LogLevel.QUIET, LogLevel.WARN, LogLevel.INFO, LogLevel.DEBUG].contains(logLevel)) {
commandLineArgs << "--${logLevel.name().toLowerCase(Locale.ENGLISH)}" commandLineArgs << "--${logLevel.name().toLowerCase(Locale.ENGLISH)}"