elasticsearch-mapper-attachments
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.elasticsearch</groupId> <artifactId>elasticsearch-mapper-attachments</artifactId> <version>3.1.2</version> </dependency>
<?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> <groupId>org.elasticsearch</groupId> <artifactId>elasticsearch-mapper-attachments</artifactId> <version>3.1.2</version> <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> <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> </scm> <parent> <groupId>org.elasticsearch.plugin</groupId> <artifactId>plugins</artifactId> <version>2.1.2</version> </parent> <properties> <elasticsearch.version>2.1.2</elasticsearch.version> <elasticsearch.plugin.name>mapper-attachments</elasticsearch.plugin.name> <elasticsearch.plugin.classname>org.elasticsearch.plugin.mapper.attachments.MapperAttachmentsPlugin</elasticsearch.plugin.classname> <elasticsearch.assembly.descriptor>${project.basedir}/src/main/assemblies/plugin.xml</elasticsearch.assembly.descriptor> <tests.rest.suite>mapper_attachments</tests.rest.suite> <tests.rest.load_packaged>false</tests.rest.load_packaged> <elasticsearch.integ.antfile>${project.basedir}/src/test/resources/integ-tests-183.xml</elasticsearch.integ.antfile> </properties> <dependencies> <dependency> <groupId>org.elasticsearch</groupId> <artifactId>elasticsearch</artifactId> <version>${elasticsearch.version}</version> <scope>provided</scope> </dependency> <!-- Tika --> <dependency> <groupId>org.apache.tika</groupId> <artifactId>tika-parsers</artifactId> <version>1.10</version> <exclusions> <!-- Not Apache2 License compatible --> <exclusion> <groupId>edu.ucar</groupId> <artifactId>netcdf</artifactId> </exclusion> <!-- Not Apache2 License compatible --> <exclusion> <groupId>edu.ucar</groupId> <artifactId>cdm</artifactId> </exclusion> <!-- Not Apache2 License compatible --> <exclusion> <groupId>edu.ucar</groupId> <artifactId>httpservices</artifactId> </exclusion> <!-- Not Apache2 License compatible --> <exclusion> <groupId>edu.ucar</groupId> <artifactId>grib</artifactId> </exclusion> <!-- Not Apache2 License compatible --> <exclusion> <groupId>edu.ucar</groupId> <artifactId>netcdf4</artifactId> </exclusion> <!-- Not Apache2 License compatible --> <exclusion> <groupId>com.uwyn</groupId> <artifactId>jhighlight</artifactId> </exclusion> <!-- 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-api</artifactId> </exclusion> </exclusions> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> </plugin> </plugins> </build> <repositories> <!-- We need this repository when we depend on a parent pom which is a SNAPSHOT one --> <repository> <id>oss-snapshots</id> <name>Sonatype OSS Snapshots</name> <url>https://oss.sonatype.org/content/repositories/snapshots/</url> </repository> </repositories> </project>