File tree Expand file tree Collapse file tree 3 files changed +9
-0
lines changed
test/external-modules/multi-project
plugin/security/qa/multi-project Expand file tree Collapse file tree 3 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -17,3 +17,7 @@ dependencies {
1717tasks. withType(StandaloneRestIntegTestTask ). configureEach {
1818 usesDefaultDistribution()
1919}
20+
21+ tasks. named(" javaRestTest" ). configure {
22+ enabled = buildParams. snapshotBuild
23+ }
Original file line number Diff line number Diff line change @@ -6,4 +6,5 @@ dependencies {
66
77tasks. named(' javaRestTest' ) {
88 usesDefaultDistribution()
9+ it. onlyIf(" snapshot build" ) { buildParams. snapshotBuild }
910}
Original file line number Diff line number Diff line change @@ -3,4 +3,8 @@ subprojects {
33 apply plugin : ' elasticsearch.bwc-test'
44
55 group = ' org.elasticsearch.qa.multi-project'
6+
7+ tasks. named { it == " javaRestTest" || it == " yamlRestTest" }. configureEach {
8+ it. onlyIf(" snapshot build" ) { buildParams. snapshotBuild }
9+ }
610}
You can’t perform that action at this time.
0 commit comments