OpenSearch/pom.xml

90 lines
3.4 KiB
XML
Raw Normal View History

2011-12-05 07:05:14 -05:00
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
2011-12-05 07:05:14 -05:00
<groupId>org.elasticsearch</groupId>
<artifactId>elasticsearch-mapper-attachments</artifactId>
<version>3.0.0-SNAPSHOT</version>
2011-12-05 07:05:14 -05:00
<packaging>jar</packaging>
<name>Elasticsearch Mapper Attachment plugin</name>
<description>The mapper attachments plugin adds the attachment type to Elasticsearch using Apache Tika.</description>
<url>https://github.com/elastic/elasticsearch-mapper-attachments/</url>
2011-12-05 07:05:14 -05:00
<inceptionYear>2009</inceptionYear>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:git@github.com:elastic/elasticsearch-mapper-attachments.git</connection>
<developerConnection>scm:git:git@github.com:elastic/elasticsearch-mapper-attachments.git</developerConnection>
<url>http://github.com/elastic/elasticsearch-mapper-attachments</url>
2011-12-05 07:05:14 -05:00
</scm>
2015-03-30 05:35:54 -04:00
<parent>
<groupId>org.elasticsearch</groupId>
2015-05-21 22:56:06 -04:00
<artifactId>elasticsearch-plugin</artifactId>
2015-03-30 05:35:54 -04:00
<version>2.0.0-SNAPSHOT</version>
</parent>
2011-12-05 07:05:14 -05:00
<properties>
<!-- If we need to define any specific property -->
<elasticsearch.version>2.0.0-SNAPSHOT</elasticsearch.version>
2011-12-05 07:05:14 -05:00
</properties>
<dependencies>
<!-- Tika -->
2011-12-05 07:05:14 -05:00
<dependency>
<groupId>org.apache.tika</groupId>
2012-09-27 15:43:51 -04:00
<artifactId>tika-parsers</artifactId>
Update to Tika 1.10 Release 1.10 - 8/1/2015 * Tika Config XML can now be used to create composite detectors, and exclude detectors that DefaultDetector would otherwise have used. This brings support in-line with Parsers. (TIKA-1702) * Reverted to legacy sort order of parsers that was mistakenly reversed in Tika 1.9 (TIKA-1689). * Upgrade to POI 3.13-beta1 (TIKA-1667). * Upgrade to PDFBox 1.8.10 (TIKA-1588). * MimeTypes now tries to find a registered type with and without parameters (TIKA-1692). * Added more robust error handling for encoding detection of .MSG files (TIKA-1238). * Fixed bug in Tika's use of the Jackcess parser that prevented reading of v97 Access files (TIKA-1681). * Upgrade xerial.org's sqlite-jdbc to 3.8.10.1. NOTE: as of Tika 1.9, this jar is "provided." Make sure to upgrade your provided jar! (TIKA-1687). * Add header/footer extraction to xls (via Aeham Abushwashi) (TIKA-1400). * Drop the source file name from the embedded file path in RecursiveParserWrapper's "X-TIKA:embedded_resource_path" (TIKA-1673). * Upgraded to Java 7 (TIKA-1536). * Non-standards compliant emails are now correctly detected as message/rfc822 (TIKA-1602). * Added parser for MS Access files via Jackcess. Many thanks to Health Market Science, Brian O'Neill and James Ahlborn for relicensing Jackcess to Apache v2! (TIKA-1601) * GDALParser now correctly sets "nitf" as a supported MediaType (TIKA-1664). * Added DigestingParser to calculate digest hashes and record them in metadata. Integrated with tika-app and tika-server (TIKA-1663). * Fixed ZipContainerDetector to detect all IPA files (TIKA-1659). Closes #147.
2015-08-19 04:14:33 -04:00
<version>1.10</version>
<exclusions>
<!-- Not Apache2 License compatible -->
<exclusion>
<groupId>edu.ucar</groupId>
<artifactId>netcdf</artifactId>
</exclusion>
<!-- Not Apache2 License compatible -->
<exclusion>
<groupId>com.uwyn</groupId>
<artifactId>jhighlight</artifactId>
</exclusion>
2015-07-07 16:36:43 -04:00
<!-- ES core already has these -->
<exclusion>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-debug-all</artifactId>
</exclusion>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging-api</artifactId>
</exclusion>
</exclusions>
2011-12-05 07:05:14 -05:00
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
2011-12-05 07:05:14 -05:00
<artifactId>maven-assembly-plugin</artifactId>
</plugin>
</plugins>
</build>
2015-01-02 13:05:18 -05:00
<repositories>
<repository>
<id>oss-snapshots</id>
<name>Sonatype OSS Snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</repository>
</repositories>
</project>