Skip to content
This repository has been archived by the owner on Jul 18, 2018. It is now read-only.

Commit

Permalink
Merge pull request #4 from curu/master
Browse files Browse the repository at this point in the history
update to support elasticsearch-2.3.3
  • Loading branch information
medcl authored Jul 4, 2016
2 parents c809b73 + c5c5654 commit 34fe056
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 5 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ String2Integer Analysis for Elasticsearch
--------------------------------------------------
| String2Integer Analysis Plugin| Elasticsearch |
--------------------------------------------------
| 1.5.3 | 2.3.3 |
--------------------------------------------------
| 1.4.1 | 2.2.1 |
--------------------------------------------------
| 1.3.0 | 1.0.0 |
Expand Down Expand Up @@ -148,4 +150,4 @@ index:
type: custom
tokenizer: whitespace
filter: [my_string2int,lowercase]
</pre>
</pre>
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.infinitbyte</groupId>
<artifactId>elasticsearch-analysis-string2int</artifactId>
<version>1.4.1</version>
<version>1.5.3</version>
<packaging>jar</packaging>
<inceptionYear>2012</inceptionYear>
<url>http://log.medcl.net</url>
Expand All @@ -32,7 +32,7 @@
</parent>

<properties>
<elasticsearch.version>2.2.1</elasticsearch.version>
<elasticsearch.version>2.3.3</elasticsearch.version>
<maven.compiler.target>1.7</maven.compiler.target>
<elasticsearch.assembly.descriptor>${project.basedir}/src/main/assemblies/plugin.xml</elasticsearch.assembly.descriptor>
<elasticsearch.plugin.name>analysis-string2int</elasticsearch.plugin.name>
Expand Down Expand Up @@ -185,4 +185,4 @@
</repository>
</distributionManagement>

</project>
</project>
7 changes: 6 additions & 1 deletion src/main/assemblies/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@
<outputDirectory></outputDirectory>
<filtered>true</filtered>
</file>
<file>
<source>${project.basedir}/src/main/resources/plugin-security.policy</source>
<outputDirectory></outputDirectory>
<filtered>true</filtered>
</file>
</files>
<dependencySets>
<dependencySet>
Expand All @@ -27,4 +32,4 @@
<scope>provided</scope>
</dependencySet>
</dependencySets>
</assembly>
</assembly>
4 changes: 4 additions & 0 deletions src/main/resources/plugin-security.policy
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
grant {
permission java.lang.RuntimePermission "*";
permission java.lang.reflect.ReflectPermission "*";
};

0 comments on commit 34fe056

Please sign in to comment.