Skip to content

Commit b854897

Browse files
committed
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.
1 parent 02c2268 commit b854897

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

x-pack/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ subprojects {
4141
]
4242
}
4343

44+
ext.projectSubstitutions += [ "org.elasticsearch.plugin:x-pack-ccr:${version}": xpackModule('ccr')]
4445
ext.projectSubstitutions += [ "org.elasticsearch.plugin:x-pack-core:${version}": xpackModule('core')]
4546
ext.projectSubstitutions += [ "org.elasticsearch.plugin:x-pack-deprecation:${version}": xpackModule('deprecation')]
4647
ext.projectSubstitutions += [ "org.elasticsearch.plugin:x-pack-graph:${version}": xpackModule('graph')]
@@ -51,5 +52,4 @@ subprojects {
5152
ext.projectSubstitutions += [ "org.elasticsearch.plugin:x-pack-sql:${version}": xpackModule('sql')]
5253
ext.projectSubstitutions += [ "org.elasticsearch.plugin:x-pack-upgrade:${version}": xpackModule('upgrade')]
5354
ext.projectSubstitutions += [ "org.elasticsearch.plugin:x-pack-watcher:${version}": xpackModule('watcher')]
54-
ext.projectSubstitutions += [ "org.elasticsearch.plugin:x-pack-ccr:${version}": xpackModule('ccr')]
5555
}

0 commit comments

Comments
 (0)