55 lines
1.8 KiB
XML
55 lines
1.8 KiB
XML
<?xml version="1.0"?>
|
|
<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>
|
|
<parent>
|
|
<groupId>com.twelvemonkeys</groupId>
|
|
<artifactId>twelvemonkeys</artifactId>
|
|
<version>3.1.1</version>
|
|
</parent>
|
|
<groupId>com.twelvemonkeys.common</groupId>
|
|
<artifactId>common</artifactId>
|
|
<packaging>pom</packaging>
|
|
<name>TwelveMonkeys :: Common</name>
|
|
<description>
|
|
The TwelveMonkeys Common library. Contains common utility classes.
|
|
</description>
|
|
|
|
<modules>
|
|
<module>common-lang</module>
|
|
<module>common-io</module>
|
|
<module>common-image</module>
|
|
</modules>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>${project.groupId}</groupId>
|
|
<artifactId>common-lang</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>${project.groupId}</groupId>
|
|
<artifactId>common-lang</artifactId>
|
|
<version>${project.version}</version>
|
|
<classifier>tests</classifier>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>${project.groupId}</groupId>
|
|
<artifactId>common-io</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.7</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|