DataCleaner-lucene
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.eobjects.datacleaner</groupId>
<artifactId>DataCleaner-lucene</artifactId>
<version>3.7-RC4</version>
</dependency><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>org.eobjects.datacleaner</groupId>
<artifactId>DataCleaner-extensions</artifactId>
<version>3.7-RC4</version>
</parent>
<properties>
<lucene.version>4.0.0</lucene.version>
</properties>
<artifactId>DataCleaner-lucene</artifactId>
<packaging>jar</packaging>
<name>DataCleaner - 'lucene search' extension</name>
<description>An extension for allowing lucene-based search and index-creation in DataCleaner batch jobs.</description>
<build>
<plugins>
<plugin>
<!-- Assemble the jar file including all it's dependencies. This is nescesary
for DataCleaner to load them all collectively. -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<!-- Include DataCleaner as a provided dependency -->
<groupId>org.eobjects.datacleaner</groupId>
<artifactId>DataCleaner-desktop</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-core</artifactId>
<version>${lucene.version}</version>
</dependency>
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-analyzers-common</artifactId>
<version>${lucene.version}</version>
</dependency>
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-queryparser</artifactId>
<version>${lucene.version}</version>
</dependency>
<!-- Test dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>