mirror of
https://github.com/haraldk/TwelveMonkeys.git
synced 2025-08-02 11:05:29 -04:00
- Removed JMock dependency, tests rewritten to use Mockito for stub/mock - All test should now be using JUnit annotation-style tests - All modules should now depend on same JUnit version - Rewrote a few tests to better utilize JUnit annotations - Fixed a few broken tests - Code style changes
53 lines
1.7 KiB
XML
53 lines
1.7 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.sandbox</groupId>
|
|
<artifactId>sandbox</artifactId>
|
|
<version>3.0-SNAPSHOT</version>
|
|
</parent>
|
|
<artifactId>sandbox-common</artifactId>
|
|
<packaging>jar</packaging>
|
|
<name>TwelveMonkeys :: Sandbox :: Common</name>
|
|
<description>
|
|
The TwelveMonkeys Common Sandbox. Experimental stuff.
|
|
</description>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.twelvemonkeys.common</groupId>
|
|
<artifactId>common-io</artifactId>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.twelvemonkeys.common</groupId>
|
|
<artifactId>common-image</artifactId>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.twelvemonkeys.imageio</groupId>
|
|
<artifactId>imageio-core</artifactId>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.twelvemonkeys.common</groupId>
|
|
<artifactId>common-io</artifactId>
|
|
<scope>test</scope>
|
|
<classifier>tests</classifier>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.twelvemonkeys.common</groupId>
|
|
<artifactId>common-lang</artifactId>
|
|
<scope>test</scope>
|
|
<classifier>tests</classifier>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project>
|