48 lines
1.4 KiB
XML
48 lines
1.4 KiB
XML
|
<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>biz.source_code</groupId>
|
||
|
<artifactId>base64coder-tests-only</artifactId>
|
||
|
<version>2010-12-19</version>
|
||
|
<packaging>pom</packaging>
|
||
|
<name>Base64Coder (Tests)</name>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>junit</groupId>
|
||
|
<artifactId>junit</artifactId>
|
||
|
<version>4.7</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>biz.source_code</groupId>
|
||
|
<artifactId>base64coder</artifactId>
|
||
|
<version>2010-12-19</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>biz.source_code</groupId>
|
||
|
<artifactId>base64coder</artifactId>
|
||
|
<version>2010-12-19</version>
|
||
|
<classifier>tests</classifier>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-surefire-plugin</artifactId>
|
||
|
<version>2.22.0</version>
|
||
|
<configuration>
|
||
|
<dependenciesToScan>
|
||
|
<dependency>biz.source_code:base64coder</dependency>
|
||
|
</dependenciesToScan>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
|
||
|
</project>
|