Upgrade to Tika 1.5

Closes #56.
This commit is contained in:
David Pilato 2014-03-19 23:20:29 +01:00
parent b8d7f17951
commit 621995d0b4
2 changed files with 3 additions and 3 deletions

View File

@ -11,12 +11,12 @@ In order to install the plugin, simply run: `bin/plugin -install elasticsearch/e
| Attachment Mapper Plugin | elasticsearch | Tika | Release date | | Attachment Mapper Plugin | elasticsearch | Tika | Release date |
|-----------------------------|-----------------------|--------|:------------:| |-----------------------------|-----------------------|--------|:------------:|
| 2.0.0-SNAPSHOT | 1.0.0.RC1 -> master | 1.4 | XXXX-XX-XX | | 2.0.0-SNAPSHOT | 1.0.0.RC1 -> master | 1.5 | XXXX-XX-XX |
| 2.0.0.RC1 | 1.0.0.RC1 -> master | 1.4 | 2014-01-15 | | 2.0.0.RC1 | 1.0.0.RC1 -> master | 1.4 | 2014-01-15 |
The `attachment` type allows to index different "attachment" type field (encoded as `base64`), for example, The `attachment` type allows to index different "attachment" type field (encoded as `base64`), for example,
microsoft office formats, open document formats, ePub, HTML, and so on (full list can be found [here](http://tika.apache.org/1.4/formats.html)). microsoft office formats, open document formats, ePub, HTML, and so on (full list can be found [here](http://tika.apache.org/1.5/formats.html)).
The `attachment` type is provided as a plugin extension. The plugin is a simple zip file that can be downloaded and placed under `$ES_HOME/plugins` location. It will be automatically detected and the `attachment` type will be added. The `attachment` type is provided as a plugin extension. The plugin is a simple zip file that can be downloaded and placed under `$ES_HOME/plugins` location. It will be automatically detected and the `attachment` type will be added.

View File

@ -81,7 +81,7 @@
<dependency> <dependency>
<groupId>org.apache.tika</groupId> <groupId>org.apache.tika</groupId>
<artifactId>tika-parsers</artifactId> <artifactId>tika-parsers</artifactId>
<version>1.4</version> <version>1.5</version>
<scope>compile</scope> <scope>compile</scope>
</dependency> </dependency>