mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-03-09 14:34:43 +00:00
This commit changes the groupId to the above mentioned one so that S3 uploads will end up in the right bucket. This will allow the Elasticsearch plugin manager to install the commercial plugins like ``` bin/plugin install {watcher,shield,license,marvel} ``` like the official ones. Original commit: elastic/x-pack-elasticsearch@642f1f006a
12 lines
516 B
XML
12 lines
516 B
XML
<?xml version="1.0"?>
|
|
<project name="commercial-integration-tests">
|
|
|
|
<import file="${elasticsearch.integ.antfile.default}"/>
|
|
|
|
<target name="start-external-cluster-with-plugin" depends="setup-workspace">
|
|
<install-plugin name="elasticsearch-license" file="${integ.deps}/elasticsearch-license-${project.version}.zip" />
|
|
<install-plugin name="${project.artifactId}" file="${project.build.directory}/releases/${project.artifactId}-${project.version}.zip"/>
|
|
<startup-elasticsearch/>
|
|
</target>
|
|
</project>
|