2007-08-30 17:59:08 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2014-02-10 19:49:43 +01:00
|
|
|
<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">
|
2011-10-09 10:57:09 +00:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2014-10-08 22:52:25 +02:00
|
|
|
<artifactId>pmd-core</artifactId>
|
2014-10-02 19:09:58 +02:00
|
|
|
<name>PMD Core</name>
|
2011-10-09 10:57:09 +00:00
|
|
|
|
|
|
|
<parent>
|
2014-10-02 19:09:58 +02:00
|
|
|
<groupId>net.sourceforge.pmd</groupId>
|
2014-10-08 22:52:25 +02:00
|
|
|
<artifactId>pmd</artifactId>
|
2023-09-30 17:15:59 +02:00
|
|
|
<version>7.0.0-SNAPSHOT</version>
|
2022-06-04 11:00:30 +02:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
2011-10-09 10:57:09 +00:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
2016-12-02 09:13:50 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<suppressionsLocation>pmd-core-checkstyle-suppressions.xml</suppressionsLocation>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2022-08-09 20:51:07 +02:00
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<!-- package test sources for use by other submodules -->
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>test-jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2011-10-09 10:57:09 +00:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<dependencies>
|
2020-07-02 10:27:26 +02:00
|
|
|
|
2022-01-27 17:27:32 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</dependency>
|
2022-02-18 16:44:31 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>jul-to-slf4j</artifactId>
|
|
|
|
</dependency>
|
2018-07-21 20:10:24 -03:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.antlr</groupId>
|
|
|
|
<artifactId>antlr4-runtime</artifactId>
|
|
|
|
</dependency>
|
2020-07-02 10:27:26 +02:00
|
|
|
|
2011-10-09 10:57:09 +00:00
|
|
|
<dependency>
|
2018-11-03 07:10:13 +01:00
|
|
|
<groupId>net.sf.saxon</groupId>
|
|
|
|
<artifactId>Saxon-HE</artifactId>
|
2011-10-09 10:57:09 +00:00
|
|
|
</dependency>
|
2014-10-12 09:39:43 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.ow2.asm</groupId>
|
|
|
|
<artifactId>asm</artifactId>
|
|
|
|
</dependency>
|
2016-01-02 12:30:49 -08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
<artifactId>gson</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2019-05-03 18:16:39 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.checkerframework</groupId>
|
|
|
|
<artifactId>checker-qual</artifactId>
|
|
|
|
</dependency>
|
2019-08-29 00:33:54 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.pcollections</groupId>
|
|
|
|
<artifactId>pcollections</artifactId>
|
|
|
|
</dependency>
|
2022-04-15 15:42:34 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.oowekyala.ooxml</groupId>
|
|
|
|
<artifactId>nice-xml-messages</artifactId>
|
2022-07-14 18:34:01 +02:00
|
|
|
<version>3.1</version>
|
2022-04-15 15:42:34 +02:00
|
|
|
</dependency>
|
2019-05-03 18:16:39 +02:00
|
|
|
|
2022-01-27 17:27:32 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-simple</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2011-10-09 10:57:09 +00:00
|
|
|
<dependency>
|
2020-05-04 23:00:28 +03:00
|
|
|
<groupId>org.hamcrest</groupId>
|
2020-05-11 15:25:07 +03:00
|
|
|
<artifactId>hamcrest</artifactId>
|
2014-08-14 21:58:31 +02:00
|
|
|
<scope>test</scope>
|
2011-10-09 10:57:09 +00:00
|
|
|
</dependency>
|
2018-04-14 03:51:35 +02:00
|
|
|
<dependency>
|
2022-04-29 18:21:55 +02:00
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter</artifactId>
|
2018-04-14 03:51:35 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2017-10-28 19:50:06 -03:00
|
|
|
<dependency>
|
2022-05-20 14:28:46 +02:00
|
|
|
<groupId>org.junit.platform</groupId>
|
|
|
|
<artifactId>junit-platform-suite</artifactId>
|
2017-10-28 19:50:06 -03:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2013-03-24 17:53:40 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
2020-05-04 23:00:28 +03:00
|
|
|
<artifactId>mockito-core</artifactId>
|
2013-03-24 17:53:40 +01:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2022-04-29 18:21:55 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.stefanbirkner</groupId>
|
|
|
|
<artifactId>system-lambda</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2011-10-09 10:57:09 +00:00
|
|
|
</dependencies>
|
2007-08-30 17:59:08 +00:00
|
|
|
</project>
|