elasticsearch-river-mongodb
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.richardwill98.elasticsearch</groupId> <artifactId>elasticsearch-river-mongodb</artifactId> <version>1.6.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"> <name>elasticsearch-river-mongodb</name> <modelVersion>4.0.0</modelVersion> <groupId>com.github.richardwill98.elasticsearch</groupId> <artifactId>elasticsearch-river-mongodb</artifactId> <version>1.6.2</version> <packaging>jar</packaging> <description>MongoDB River for ElasticSearch</description> <url>https://github.com/richardwilly98/elasticsearch-river-mongodb</url> <inceptionYear>2010</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> <url>https://github.com/richardwilly98/elasticsearch-river-mongodb</url> <connection>scm:git:git@github.com:richardwilly98/elasticsearch-river-mongodb.git</connection> <developerConnection>scm:git:git@github.com:richardwilly98/elasticsearch-river-mongodb.git</developerConnection> </scm> <issueManagement> <system>GitHub</system> <url>https://github.com/richardwilly98/elasticsearch-river-mongodb/issues</url> </issueManagement> <developers> <developer> <email>richard.louapre@gmail.com</email> <name>Richard Louapre</name> <url>https://github.com/richardwilly98</url> <id>richardwilly98</id> </developer> </developers> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <properties> <elasticsearch.version>0.20.1</elasticsearch.version> <mongo-java-driver.version>2.10.1</mongo-java-driver.version> <de.flapdoodle.embed.mongo.version>1.28</de.flapdoodle.embed.mongo.version> <hamcrest.version>1.3</hamcrest.version> </properties> <repositories> <repository> <id>sonatype-releases</id> <name>Sonatype Releases Repository</name> <url>http://oss.sonatype.org/content/repositories/releases</url> </repository> </repositories> <dependencies> <dependency> <groupId>org.elasticsearch</groupId> <artifactId>elasticsearch</artifactId> <version>${elasticsearch.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.17</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-core</artifactId> <version>${hamcrest.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-library</artifactId> <version>${hamcrest.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>6.8</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mongodb</groupId> <artifactId>mongo-java-driver</artifactId> <version>${mongo-java-driver.version}</version> </dependency> <dependency> <groupId>de.flapdoodle.embed</groupId> <artifactId>de.flapdoodle.embed.mongo</artifactId> <version>${de.flapdoodle.embed.mongo.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>de.flapdoodle.embed</groupId> <artifactId>de.flapdoodle.embed.process</artifactId> <version>1.24</version> <scope>test</scope> </dependency> </dependencies> <build> <testResources> <testResource> <directory>${basedir}/src/test/java</directory> <includes> <include>**/*.json</include> <include>**/*.yml</include> <include>**/*.html</include> <include>**/*.pdf</include> </includes> </testResource> <testResource> <directory>${basedir}/src/test/resources</directory> <includes> <include>**/*.*</include> </includes> </testResource> </testResources> <plugins> <plugin> <groupId>com.github.github</groupId> <artifactId>downloads-maven-plugin</artifactId> <version>0.6</version> <configuration> <description>${project.name} download for ${project.version}</description> <override>true</override> <includeAttached>true</includeAttached> <includes> <include>releases/*.zip</include> </includes> </configuration> <executions> <execution> <goals> <goal>upload</goal> </goals> <phase>install</phase> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.11</version> <configuration> <includes> <include>**/*Test.java</include> </includes> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.1.2</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>2.3</version> <configuration> <appendAssemblyId>false</appendAssemblyId> <outputDirectory>${project.build.directory}/releases/</outputDirectory> <descriptors> <descriptor>${basedir}/src/main/assemblies/plugin.xml</descriptor> </descriptors> </configuration> <executions> <execution> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <!-- <pluginRepositories> <pluginRepository> <id>central</id> <name>Maven Plugin Repository</name> <url>http://repo1.maven.org/maven2</url> </pluginRepository> <pluginRepository> <id>sonatype</id> <name>Sonatype Groups</name> <url>https://oss.sonatype.org/content/groups/public/</url> </pluginRepository> <pluginRepository> <id>oss-sonatype-snapshots</id> <url>https://oss.sonatype.org/content/repositories/snapshots/</url> </pluginRepository> </pluginRepositories> --> </project>