Skip to content
This repository was archived by the owner on Jan 31, 2024. It is now read-only.

Commit 8e53807

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 #21.
1 parent ddad7cb commit 8e53807

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

pom.xml

+10
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,16 @@
9494
</dependencies>
9595

9696
<build>
97+
<resources>
98+
<resource>
99+
<directory>src/main/resources</directory>
100+
<filtering>true</filtering>
101+
<includes>
102+
<include>**/*.properties</include>
103+
</includes>
104+
</resource>
105+
</resources>
106+
97107
<testResources>
98108
<testResource>
99109
<directory>src/test/resources</directory>
+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
plugin=org.elasticsearch.plugin.river.wikipedia.WikipediaRiverPlugin
2+
version=${project.version}
23

0 commit comments

Comments
 (0)