<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-components</artifactId> <version>5.1.5.1</version> </parent> <artifactId>DataCleaner-visualization</artifactId> <packaging>jar</packaging> <build> <plugins> <plugin> <groupId>net.alchim31.maven</groupId> <artifactId>scala-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <executions> <execution> <id>add-scala-main-source</id> <phase>generate-sources</phase> <goals> <goal>add-source</goal> </goals> <configuration> <sources> <source>src/main/scala</source> </sources> </configuration> </execution> <execution> <id>add-scala-test-source</id> <phase>generate-sources</phase> <goals> <goal>add-test-source</goal> </goals> <configuration> <sources> <source>src/test/scala</source> </sources> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <!-- Include DataCleaner as a provided dependency --> <dependency> <groupId>org.eobjects.datacleaner</groupId> <artifactId>DataCleaner-desktop-api</artifactId> <version>${project.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.eobjects.datacleaner</groupId> <artifactId>DataCleaner-html-rendering</artifactId> <version>${project.version}</version> </dependency> <!-- Test dependencies --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> </dependencies> </project>
<dependency> <groupId>org.eobjects.datacleaner</groupId> <artifactId>DataCleaner-visualization</artifactId> <version>5.1.5.1</version> </dependency>
org.eobjects.datacleaner:DataCleaner-visualization:5.1.5.1