Skip to content

Commit d02ca32

Browse files
committed
Add plugin version in es-plugin.properties
With elastic/elasticsearch#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 #50.
1 parent 229ba2c commit d02ca32

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

pom.xml

+9
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,15 @@
5959
</dependencies>
6060

6161
<build>
62+
<resources>
63+
<resource>
64+
<directory>src/main/resources</directory>
65+
<filtering>true</filtering>
66+
<includes>
67+
<include>**/*.properties</include>
68+
</includes>
69+
</resource>
70+
</resources>
6271
<plugins>
6372
<plugin>
6473
<groupId>org.apache.maven.plugins</groupId>
+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
plugin=org.elasticsearch.plugin.river.couchdb.CouchdbRiverPlugin
2+
version=${project.version}
23

0 commit comments

Comments
 (0)