Release 1.5
This commit is contained in:
parent
5c649ad226
commit
0a17fe2e44
|
@ -3,13 +3,15 @@ Mapper Attachments Type for ElasticSearch
|
|||
|
||||
The mapper attachments plugin adds the `attachment` type to ElasticSearch using Tika.
|
||||
|
||||
In order to install the plugin, simply run: `bin/plugin -install elasticsearch/elasticsearch-mapper-attachments/1.4.0`.
|
||||
In order to install the plugin, simply run: `bin/plugin -install elasticsearch/elasticsearch-mapper-attachments/1.5.0`.
|
||||
|
||||
------------------------------------------------------
|
||||
| Attachment Mapper Plugin | ElasticSearch | Tika |
|
||||
------------------------------------------------------
|
||||
| master | 0.19 -> master | 1.2 |
|
||||
------------------------------------------------------
|
||||
| 1.5.0 | 0.19 -> master | 1.2 |
|
||||
------------------------------------------------------
|
||||
| 1.4.0 | 0.19 -> master | 1.1 |
|
||||
------------------------------------------------------
|
||||
| 1.3.0 | 0.19 -> master | 1.0 |
|
||||
|
|
20
pom.xml
20
pom.xml
|
@ -6,7 +6,7 @@
|
|||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>org.elasticsearch</groupId>
|
||||
<artifactId>elasticsearch-mapper-attachments</artifactId>
|
||||
<version>1.5.0-SNAPSHOT</version>
|
||||
<version>1.5.0</version>
|
||||
<packaging>jar</packaging>
|
||||
<description>Mapper Attachments Type for ElasticSearch</description>
|
||||
<inceptionYear>2009</inceptionYear>
|
||||
|
@ -69,6 +69,24 @@
|
|||
<artifactId>tika-app</artifactId>
|
||||
<version>1.2</version>
|
||||
<scope>compile</scope>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<artifactId>tika-parsers</artifactId>
|
||||
<groupId>org.apache.tika</groupId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<artifactId>tika-xmp</artifactId>
|
||||
<groupId>org.apache.tika</groupId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<artifactId>slf4j-log4j12</artifactId>
|
||||
<groupId>org.slf4j</groupId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<artifactId>gson</artifactId>
|
||||
<groupId>com.google.code.gson</groupId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
|
|
Loading…
Reference in New Issue