elasticsearch-indexmanager-it
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.infinispan</groupId> <artifactId>elasticsearch-indexmanager-it</artifactId> <version>9.0.3.Final</version> </dependency>
<?xml version='1.0' encoding='UTF-8'?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.infinispan</groupId> <artifactId>infinispan-parent</artifactId> <version>9.0.3.Final</version> <relativePath>../../parent/pom.xml</relativePath> </parent> <artifactId>elasticsearch-indexmanager-it</artifactId> <name>Integration tests: Elasticsearch IndexManager</name> <description>Integration tests for storing indexes on Elasticsearch</description> <dependencies> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>infinispan-commons-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>infinispan-core</artifactId> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>org.infinispan</groupId> <artifactId>infinispan-query</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.infinispan</groupId> <artifactId>infinispan-query</artifactId> <classifier>tests</classifier> <scope>test</scope> </dependency> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-search-elasticsearch</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.lucene</groupId> <artifactId>lucene-queryparser</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <skipTests>true</skipTests> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <configuration> <disableXmlReport>true</disableXmlReport> <useFile>false</useFile> <skip>${skipTests}</skip> <properties> <property> <name>usedefaultlisteners</name> <value>false</value> </property> <property> <name>listener</name> <value>${testNGListeners}</value> </property> </properties> </configuration> <executions> <execution> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> <configuration> <redirectTestOutputToFile>false</redirectTestOutputToFile> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>unpack-es-plugins</id> <phase>pre-integration-test</phase> <goals> <goal>unpack</goal> </goals> <configuration> <skip>${skipTests}</skip> <artifactItems> <artifactItem> <groupId>org.elasticsearch.plugin</groupId> <artifactId>delete-by-query</artifactId> <version>${version.elasticsearch}</version> <type>zip</type> <overWrite>true</overWrite> <outputDirectory>${project.build.directory}/plugins/delete-by-query </outputDirectory> </artifactItem> </artifactItems> </configuration> </execution> </executions> </plugin> <plugin> <groupId>com.github.alexcojocaru</groupId> <artifactId>elasticsearch-maven-plugin</artifactId> <version>2.3</version> <configuration> <skip>${skipTests}</skip> <clusterName>test</clusterName> <pluginsPath>${project.build.directory}/plugins/</pluginsPath> <tcpPort>9300</tcpPort> <httpPort>9200</httpPort> </configuration> <executions> <execution> <id>start-elasticsearch</id> <phase>pre-integration-test</phase> <goals> <goal>start</goal> </goals> </execution> <execution> <id>stop-elasticsearch</id> <phase>post-integration-test</phase> <goals> <goal>stop</goal> </goals> </execution> </executions> <dependencies> <dependency> <groupId>org.elasticsearch</groupId> <artifactId>elasticsearch</artifactId> <version>${version.elasticsearch}</version> </dependency> </dependencies> </plugin> </plugins> </build> </project>