2014-10-04 17:37:09 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<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>
|
|
|
|
<artifactId>pmd-test</artifactId>
|
|
|
|
<name>PMD Test Framework</name>
|
2018-09-24 19:00:17 +02:00
|
|
|
<description>Contains a test framework to test rules.</description>
|
2014-10-04 17:37:09 +02:00
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>net.sourceforge.pmd</groupId>
|
2014-10-08 22:52:25 +02:00
|
|
|
<artifactId>pmd</artifactId>
|
2020-04-24 10:53:12 +02:00
|
|
|
<version>6.24.0-SNAPSHOT</version>
|
2014-10-04 17:37:09 +02:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
2020-05-04 23:00:28 +03:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.hamcrest</groupId>
|
|
|
|
<artifactId>hamcrest</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2014-10-04 17:37:09 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
2019-03-10 19:32:20 +01:00
|
|
|
<!-- overrides the default scope from inherited dependency management. -->
|
|
|
|
<scope>compile</scope>
|
2014-10-04 17:37:09 +02:00
|
|
|
</dependency>
|
2014-10-12 09:39:43 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.sourceforge.pmd</groupId>
|
|
|
|
<artifactId>pmd-core</artifactId>
|
|
|
|
</dependency>
|
2017-09-23 22:27:34 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.ant</groupId>
|
|
|
|
<artifactId>ant</artifactId>
|
|
|
|
</dependency>
|
2014-10-06 22:46:01 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.ant</groupId>
|
|
|
|
<artifactId>ant-testutil</artifactId>
|
|
|
|
</dependency>
|
2017-09-23 22:27:34 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
</dependency>
|
2016-08-07 10:44:44 +02:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-core</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2014-10-04 17:37:09 +02:00
|
|
|
</dependencies>
|
|
|
|
</project>
|