common-library
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.openscm.kundo.common</groupId>
<artifactId>common-library</artifactId>
<version>0.9</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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.openscm.kundo.common</groupId> <artifactId>common-library</artifactId> <packaging>jar</packaging> <version>0.9</version> <name>Kundo Common Library</name> <parent> <groupId>org.openscm.kundo</groupId> <artifactId>kundo</artifactId> <version>1</version> </parent> <scm> <connection>scm:svn:https://kundo.dev.java.net/svn/kundo/tags/common-library-0.9</connection> <developerConnection>scm:svn:https://kundo.dev.java.net/svn/kundo/tags/common-library-0.9</developerConnection> <url>https://kundo.dev.java.net/svn/kundo/tags/common-library-0.9</url> </scm> <dependencies> <dependency> <groupId>org.codehaus.groovy</groupId> <artifactId>groovy-all</artifactId> </dependency> <dependency> <groupId>ant-contrib</groupId> <artifactId>ant-contrib</artifactId> <version>1.0b2</version> </dependency> <dependency> <groupId>org.apache.ant</groupId> <artifactId>ant-nodeps</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.codehaus.mojo.groovy</groupId> <artifactId>groovy-maven-plugin</artifactId> <executions> <execution> <id>groovy_compile</id> <goals> <goal>compile</goal> </goals> <phase>compile</phase> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo.groovy</groupId> <artifactId>groovy-maven-plugin</artifactId> <executions> <execution> <id>groovy_test_compile</id> <goals> <goal>testCompile</goal> </goals> <phase>test-compile</phase> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> <version>2.2</version> <executions> <execution> <goals> <goal>clean</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> <configuration> <formats> <format>xml</format> <!-- XML Report for the Hudson Cobertura Plugin --> <format>html</format> </formats> </configuration> </plugin> </plugins> </reporting> </project>