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>
|
2018-06-17 11:08:05 +02:00
|
|
|
<version>7.0.0-SNAPSHOT</version>
|
2022-06-04 11:00:30 +02:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
2014-10-04 17:37:09 +02:00
|
|
|
</parent>
|
|
|
|
|
2022-05-17 23:32:57 +02:00
|
|
|
<properties>
|
|
|
|
<java.version>8</java.version>
|
|
|
|
</properties>
|
|
|
|
|
2014-10-04 17:37:09 +02:00
|
|
|
<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>
|
2022-04-29 16:48:09 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-api</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2022-10-13 16:00:00 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-params</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>
|
2022-05-20 20:12:42 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.sourceforge.pmd</groupId>
|
|
|
|
<artifactId>pmd-test-schema</artifactId>
|
|
|
|
</dependency>
|
2022-08-09 20:27:01 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.sourceforge.pmd</groupId>
|
|
|
|
<artifactId>pmd-ant</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>
|
2020-06-27 17:57:21 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.stefanbirkner</groupId>
|
|
|
|
<artifactId>system-rules</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2022-01-27 17:27:32 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-simple</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>
|