2014-10-04 19:06:41 +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-xml</artifactId>
|
|
|
|
<name>PMD XML and XSL</name>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>net.sourceforge.pmd</groupId>
|
2014-10-08 22:52:25 +02:00
|
|
|
<artifactId>pmd</artifactId>
|
2023-09-30 17:15:54 +02:00
|
|
|
<version>7.0.0-rc4</version>
|
2022-06-04 11:00:30 +02:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
2014-10-04 19:06:41 +02:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<build>
|
2014-10-08 22:31:29 +02:00
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>${basedir}/src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
2014-10-04 19:06:41 +02:00
|
|
|
<plugins>
|
2020-04-30 15:16:31 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.antlr</groupId>
|
|
|
|
<artifactId>antlr4-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
2014-10-04 19:06:41 +02:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<useDefaultDelimiters>false</useDefaultDelimiters>
|
|
|
|
<delimiters>
|
|
|
|
<delimiter>${*}</delimiter>
|
|
|
|
</delimiters>
|
2022-10-06 17:39:56 +02:00
|
|
|
<escapeString>\</escapeString>
|
2014-10-04 19:06:41 +02:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2014-10-12 09:39:43 +02:00
|
|
|
<groupId>net.sourceforge.pmd</groupId>
|
|
|
|
<artifactId>pmd-core</artifactId>
|
2014-10-04 19:06:41 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2020-07-02 15:12:31 +02:00
|
|
|
<groupId>org.antlr</groupId>
|
|
|
|
<artifactId>antlr4-runtime</artifactId>
|
2014-10-04 19:06:41 +02:00
|
|
|
</dependency>
|
2014-10-12 09:39:43 +02:00
|
|
|
|
2017-09-23 22:27:34 +02:00
|
|
|
<dependency>
|
2022-10-03 10:32:00 +02:00
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter</artifactId>
|
2017-09-23 22:27:34 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2014-10-04 19:06:41 +02:00
|
|
|
<dependency>
|
2014-10-11 13:26:10 +02:00
|
|
|
<groupId>net.sourceforge.pmd</groupId>
|
|
|
|
<artifactId>pmd-test</artifactId>
|
2014-10-04 19:06:41 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2020-01-10 12:12:34 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.sourceforge.pmd</groupId>
|
|
|
|
<artifactId>pmd-lang-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2014-10-04 19:06:41 +02:00
|
|
|
</dependencies>
|
|
|
|
</project>
|