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>
|
2022-04-30 09:38:24 +02:00
|
|
|
<version>6.46.0-SNAPSHOT</version>
|
2020-06-07 12:36:58 +02:00
|
|
|
<relativePath>../</relativePath>
|
2014-10-04 17:37:09 +02:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
2020-05-22 11:36:49 +02:00
|
|
|
<!--
|
|
|
|
hamcrest and junit are scope compile,
|
|
|
|
so that they are automatically available to users
|
|
|
|
of the pmd-test module
|
|
|
|
-->
|
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
|
|
|
<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>
|
2020-06-27 17:57:21 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.stefanbirkner</groupId>
|
|
|
|
<artifactId>system-rules</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</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>
|