storm-crawler-elasticsearch
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.digitalpebble.stormcrawler</groupId> <artifactId>storm-crawler-elasticsearch</artifactId> <version>2.11</version> </dependency>
<?xml version="1.0"?> <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> <parent> <groupId>com.digitalpebble.stormcrawler</groupId> <artifactId>storm-crawler-external</artifactId> <version>2.11</version> <relativePath>../pom.xml</relativePath> </parent> <properties> <elasticsearch.version>7.17.7</elasticsearch.version> </properties> <artifactId>storm-crawler-elasticsearch</artifactId> <packaging>jar</packaging> <name>storm-crawler-elasticsearch</name> <url>https://github.com/DigitalPebble/storm-crawler/tree/master/external/elasticsearch</url> <description>Elasticsearch resources for StormCrawler</description> <build> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <executions> <execution> <id>default-test</id> <phase>test</phase> <goals> <goal>test</goal> </goals> </execution> </executions> <configuration> <systemPropertyVariables> <elasticsearch-version>${elasticsearch.version}</elasticsearch-version> </systemPropertyVariables> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.elasticsearch.client</groupId> <artifactId>elasticsearch-rest-high-level-client</artifactId> <version>${elasticsearch.version}</version> </dependency> <dependency> <groupId>org.elasticsearch.client</groupId> <artifactId>elasticsearch-rest-client-sniffer</artifactId> <version>${elasticsearch.version}</version> </dependency> <!-- https://mvnrepository.com/artifact/org.testcontainers/elasticsearch --> <dependency> <groupId>org.testcontainers</groupId> <artifactId>elasticsearch</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.digitalpebble.stormcrawler</groupId> <artifactId>storm-crawler-core</artifactId> <version>${project.version}</version> <type>test-jar</type> <scope>test</scope> </dependency> </dependencies> </project>