Add plugin version in es-plugin.properties
With https://github.com/elasticsearch/elasticsearch/issues/2784, we can now add plugin version in `es-plugin.properties` file. It will only be used with elasticsearch 1.0.0 and upper. No need to push it in 1.x branch. Closes #59.
This commit is contained in:
parent
8f87ed8620
commit
7c1284817e
6
pom.xml
6
pom.xml
|
@ -143,6 +143,12 @@
|
|||
</dependencies>
|
||||
|
||||
<build>
|
||||
<resources>
|
||||
<resource>
|
||||
<directory>src/main/resources</directory>
|
||||
<filtering>true</filtering>
|
||||
</resource>
|
||||
</resources>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
|
|
|
@ -1,2 +1,3 @@
|
|||
plugin=org.elasticsearch.plugin.cloud.aws.CloudAwsPlugin
|
||||
version=${project.version}
|
||||
|
||||
|
|
Loading…
Reference in New Issue