mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-10 15:05:33 +00:00
Today everything is tight to having the next version as the latest. In order to work towards 2.0.0.beta1 we need to fix all the usage of 2.0.0-SNAPSHOT to reflect the version we will release soon. Usually we do this on the release branch but to simplify things I wanna keep this on master for now and move to 2.1.0-SNAPSHOT on master once we created a 2.0 branch. Closes #12148
37 lines
1.0 KiB
XML
37 lines
1.0 KiB
XML
<project>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>org.elasticsearch</groupId>
|
|
<artifactId>elasticsearch-rest-api-spec</artifactId>
|
|
<version>2.0.0.beta1-SNAPSHOT</version>
|
|
<name>Elasticsearch Rest API Spec</name>
|
|
<parent>
|
|
<groupId>org.sonatype.oss</groupId>
|
|
<artifactId>oss-parent</artifactId>
|
|
<version>7</version>
|
|
<relativePath></relativePath>
|
|
</parent>
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-remote-resources-plugin</artifactId>
|
|
<version>1.5</version>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>bundle</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<includes>
|
|
<include>**/*</include>
|
|
</includes>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project> |