mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-18 10:54:54 +00:00
[maven] rename maven names / ids for distribution modules
This commit is contained in:
parent
d21afc8090
commit
b5eb78875f
@ -5,13 +5,13 @@
|
|||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.elasticsearch.distribution</groupId>
|
<groupId>org.elasticsearch.distribution</groupId>
|
||||||
<artifactId>elasticsearch-distribution</artifactId>
|
<artifactId>distributions</artifactId>
|
||||||
<version>2.1.0-SNAPSHOT</version>
|
<version>2.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<groupId>org.elasticsearch.distribution.deb</groupId>
|
<groupId>org.elasticsearch.distribution.deb</groupId>
|
||||||
<artifactId>elasticsearch</artifactId>
|
<artifactId>elasticsearch</artifactId>
|
||||||
<name>Elasticsearch DEB Distribution</name>
|
<name>Distribution: Deb</name>
|
||||||
<!--
|
<!--
|
||||||
We should use deb packaging here because we don't want to publish any jar.
|
We should use deb packaging here because we don't want to publish any jar.
|
||||||
But if you do this, then maven lifecycle does not execute any test (nor compile any test)
|
But if you do this, then maven lifecycle does not execute any test (nor compile any test)
|
||||||
|
@ -5,13 +5,13 @@
|
|||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.elasticsearch.distribution</groupId>
|
<groupId>org.elasticsearch.distribution</groupId>
|
||||||
<artifactId>elasticsearch-distribution</artifactId>
|
<artifactId>distributions</artifactId>
|
||||||
<version>2.1.0-SNAPSHOT</version>
|
<version>2.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<groupId>org.elasticsearch.distribution.fully-loaded</groupId>
|
<groupId>org.elasticsearch.distribution.fully-loaded</groupId>
|
||||||
<artifactId>elasticsearch</artifactId>
|
<artifactId>elasticsearch</artifactId>
|
||||||
<name>Elasticsearch with all optional dependencies</name>
|
<name>Distribution: with all optional dependencies</name>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
@ -10,9 +10,9 @@
|
|||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<groupId>org.elasticsearch.distribution</groupId>
|
<groupId>org.elasticsearch.distribution</groupId>
|
||||||
<artifactId>elasticsearch-distribution</artifactId>
|
<artifactId>distributions</artifactId>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
<name>Elasticsearch Distribution</name>
|
<name>Distribution: Parent POM</name>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<!-- Properties used for building RPM & DEB packages (see common/packaging.properties) -->
|
<!-- Properties used for building RPM & DEB packages (see common/packaging.properties) -->
|
||||||
|
@ -5,13 +5,13 @@
|
|||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.elasticsearch.distribution</groupId>
|
<groupId>org.elasticsearch.distribution</groupId>
|
||||||
<artifactId>elasticsearch-distribution</artifactId>
|
<artifactId>distributions</artifactId>
|
||||||
<version>2.1.0-SNAPSHOT</version>
|
<version>2.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<groupId>org.elasticsearch.distribution.rpm</groupId>
|
<groupId>org.elasticsearch.distribution.rpm</groupId>
|
||||||
<artifactId>elasticsearch</artifactId>
|
<artifactId>elasticsearch</artifactId>
|
||||||
<name>Elasticsearch RPM Distribution</name>
|
<name>Distribution: RPM</name>
|
||||||
<packaging>rpm</packaging>
|
<packaging>rpm</packaging>
|
||||||
<description>The RPM distribution of Elasticsearch</description>
|
<description>The RPM distribution of Elasticsearch</description>
|
||||||
|
|
||||||
|
@ -5,13 +5,13 @@
|
|||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.elasticsearch.distribution</groupId>
|
<groupId>org.elasticsearch.distribution</groupId>
|
||||||
<artifactId>elasticsearch-distribution</artifactId>
|
<artifactId>distributions</artifactId>
|
||||||
<version>2.1.0-SNAPSHOT</version>
|
<version>2.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<groupId>org.elasticsearch.distribution.shaded</groupId>
|
<groupId>org.elasticsearch.distribution.shaded</groupId>
|
||||||
<artifactId>elasticsearch</artifactId>
|
<artifactId>elasticsearch</artifactId>
|
||||||
<name>Elasticsearch Shaded Distribution</name>
|
<name>Distribution: Shaded JAR</name>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
<dependency>
|
||||||
|
@ -47,7 +47,7 @@
|
|||||||
# hasn't been done, we assume that this is not a packaged version and the
|
# hasn't been done, we assume that this is not a packaged version and the
|
||||||
# user has forgotten to run Maven to create a package.
|
# user has forgotten to run Maven to create a package.
|
||||||
IS_PACKAGED_VERSION='${project.parent.artifactId}'
|
IS_PACKAGED_VERSION='${project.parent.artifactId}'
|
||||||
if [ "$IS_PACKAGED_VERSION" != "elasticsearch-distribution" ]; then
|
if [ "$IS_PACKAGED_VERSION" != "distributions" ]; then
|
||||||
cat >&2 << EOF
|
cat >&2 << EOF
|
||||||
Error: You must build the project with Maven or download a pre-built package
|
Error: You must build the project with Maven or download a pre-built package
|
||||||
before you can run Elasticsearch. See 'Building from Source' in README.textile
|
before you can run Elasticsearch. See 'Building from Source' in README.textile
|
||||||
|
@ -5,13 +5,13 @@
|
|||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.elasticsearch.distribution</groupId>
|
<groupId>org.elasticsearch.distribution</groupId>
|
||||||
<artifactId>elasticsearch-distribution</artifactId>
|
<artifactId>distributions</artifactId>
|
||||||
<version>2.1.0-SNAPSHOT</version>
|
<version>2.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<groupId>org.elasticsearch.distribution.tar</groupId>
|
<groupId>org.elasticsearch.distribution.tar</groupId>
|
||||||
<artifactId>elasticsearch</artifactId>
|
<artifactId>elasticsearch</artifactId>
|
||||||
<name>Elasticsearch TAR Distribution</name>
|
<name>Distribution: TAR</name>
|
||||||
<!--
|
<!--
|
||||||
We should use pom packaging here because we don't want to publish any jar.
|
We should use pom packaging here because we don't want to publish any jar.
|
||||||
But if you do this, then maven lifecycle does not execute any test (nor compile any test)
|
But if you do this, then maven lifecycle does not execute any test (nor compile any test)
|
||||||
|
@ -5,13 +5,13 @@
|
|||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.elasticsearch.distribution</groupId>
|
<groupId>org.elasticsearch.distribution</groupId>
|
||||||
<artifactId>elasticsearch-distribution</artifactId>
|
<artifactId>distributions</artifactId>
|
||||||
<version>2.1.0-SNAPSHOT</version>
|
<version>2.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<groupId>org.elasticsearch.distribution.zip</groupId>
|
<groupId>org.elasticsearch.distribution.zip</groupId>
|
||||||
<artifactId>elasticsearch</artifactId>
|
<artifactId>elasticsearch</artifactId>
|
||||||
<name>Elasticsearch ZIP Distribution</name>
|
<name>Distribution: ZIP</name>
|
||||||
<!--
|
<!--
|
||||||
We should use pom packaging here because we don't want to publish any jar.
|
We should use pom packaging here because we don't want to publish any jar.
|
||||||
But if you do this, then maven lifecycle does not execute any test (nor compile any test)
|
But if you do this, then maven lifecycle does not execute any test (nor compile any test)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user