fscrawler-es5
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.bowriverstudio</groupId>
<artifactId>fscrawler-es5</artifactId>
<version>2.6</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>
<parent>
<groupId>com.bowriverstudio</groupId>
<artifactId>fscrawler-distribution</artifactId>
<version>2.6</version>
</parent>
<artifactId>fscrawler-es5</artifactId>
<name>FSCrawler ZIP Distribution for Elasticsearch 5.x</name>
<dependencies>
<dependency>
<groupId>com.bowriverstudio</groupId>
<artifactId>fscrawler-elasticsearch-client-v5</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
</plugin>
<!-- Elasticsearch v5 is not maintained anymore but this CVE
https://ossindex.sonatype.org/vuln/d2175c7c-c652-480c-9b90-7239dd5bfc3e
is still there.
We need to remove the v5 compatibility but in the mean time let disable the analysis
-->
<plugin>
<groupId>org.sonatype.ossindex.maven</groupId>
<artifactId>ossindex-maven-plugin</artifactId>
<version>3.0.4</version>
<executions>
<execution>
<id>audit-dependencies</id>
<phase>none</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>