From b8548973e3a11e8323950eacc9264909377725f6 Mon Sep 17 00:00:00 2001 From: Jason Tedor Date: Wed, 25 Jul 2018 13:13:53 -0400 Subject: [PATCH] Maintain ordering in X-Pack project substitutions This commit fixes the ordering of the project substitutions for X-Pack. This is not a bug, simply keeping them in order helps maintain them. --- x-pack/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/build.gradle b/x-pack/build.gradle index c2226b5463d..4ba4c28ee63 100644 --- a/x-pack/build.gradle +++ b/x-pack/build.gradle @@ -41,6 +41,7 @@ subprojects { ] } + ext.projectSubstitutions += [ "org.elasticsearch.plugin:x-pack-ccr:${version}": xpackModule('ccr')] ext.projectSubstitutions += [ "org.elasticsearch.plugin:x-pack-core:${version}": xpackModule('core')] ext.projectSubstitutions += [ "org.elasticsearch.plugin:x-pack-deprecation:${version}": xpackModule('deprecation')] ext.projectSubstitutions += [ "org.elasticsearch.plugin:x-pack-graph:${version}": xpackModule('graph')] @@ -51,5 +52,4 @@ subprojects { ext.projectSubstitutions += [ "org.elasticsearch.plugin:x-pack-sql:${version}": xpackModule('sql')] ext.projectSubstitutions += [ "org.elasticsearch.plugin:x-pack-upgrade:${version}": xpackModule('upgrade')] ext.projectSubstitutions += [ "org.elasticsearch.plugin:x-pack-watcher:${version}": xpackModule('watcher')] - ext.projectSubstitutions += [ "org.elasticsearch.plugin:x-pack-ccr:${version}": xpackModule('ccr')] }