DataCleaner-groovy
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.eobjects.datacleaner.extensions</groupId> <artifactId>DataCleaner-groovy</artifactId> <version>2.5</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</artifactId> <version>4.0.11</version> </parent> <groupId>org.eobjects.datacleaner.extensions</groupId> <artifactId>DataCleaner-groovy</artifactId> <version>2.5</version> <scm> <url>https://github.com/kaspersorensen/GroovyDataCleanerExtension</url> <connection>scm:git:https://github.com/kaspersorensen/GroovyDataCleanerExtension.git</connection> <developerConnection>scm:git:https://github.com/kaspersorensen/GroovyDataCleanerExtension.git</developerConnection> <tag>DataCleaner-groovy-2.5</tag> </scm> <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> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadoc</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <skip>false</skip> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.codehaus.groovy</groupId> <artifactId>groovy-all</artifactId> <version>2.4.4</version> </dependency> <dependency> <groupId>org.eobjects.datacleaner</groupId> <artifactId>DataCleaner-engine-core</artifactId> <version>4.0.11</version> <scope>provided</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> </dependencies> </project>