2016-03-11 13:30:05 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2020-07-25 13:45:27 +02: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">
|
2020-07-02 15:12:31 +02:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>pmd-apex</artifactId>
|
|
|
|
<name>PMD Apex</name>
|
2017-08-15 11:25:38 +02:00
|
|
|
|
2020-07-02 15:12:31 +02:00
|
|
|
<parent>
|
|
|
|
<groupId>net.sourceforge.pmd</groupId>
|
|
|
|
<artifactId>pmd</artifactId>
|
2024-05-31 13:21:14 +02:00
|
|
|
<version>7.3.0-SNAPSHOT</version>
|
2022-06-04 11:00:30 +02:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
2020-07-02 15:12:31 +02:00
|
|
|
</parent>
|
2017-08-15 11:25:38 +02:00
|
|
|
|
2020-07-02 15:12:31 +02:00
|
|
|
<build>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>${basedir}/src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<useDefaultDelimiters>false</useDefaultDelimiters>
|
|
|
|
<delimiters>
|
|
|
|
<delimiter>${*}</delimiter>
|
|
|
|
</delimiters>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2024-02-23 10:50:58 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>build-helper-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.jetbrains.kotlin</groupId>
|
|
|
|
<artifactId>kotlin-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
2022-07-22 06:30:39 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-javadocs</id>
|
2024-02-23 10:50:58 +01:00
|
|
|
<!-- disable this execution, as we are using dokka-maven-plugin here -->
|
2022-07-22 06:30:39 +00:00
|
|
|
<phase>none</phase>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.jetbrains.dokka</groupId>
|
|
|
|
<artifactId>dokka-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
2024-04-04 15:20:15 +02:00
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>com.github.siom79.japicmp</groupId>
|
|
|
|
<artifactId>japicmp-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<parameter>
|
|
|
|
<excludes combine.children="append">
|
|
|
|
<exclude>net.sourceforge.pmd.lang.apex.internal</exclude>
|
|
|
|
<exclude>net.sourceforge.pmd.lang.apex.metrics.internal</exclude>
|
|
|
|
<exclude>net.sourceforge.pmd.lang.apex.rule.internal</exclude>
|
|
|
|
</excludes>
|
|
|
|
</parameter>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2020-07-02 15:12:31 +02:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.sourceforge.pmd</groupId>
|
|
|
|
<artifactId>pmd-core</artifactId>
|
|
|
|
</dependency>
|
2017-08-15 11:25:38 +02:00
|
|
|
|
2022-10-11 17:35:21 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jetbrains.kotlin</groupId>
|
|
|
|
<artifactId>kotlin-stdlib</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jetbrains.kotlin</groupId>
|
|
|
|
<artifactId>kotlin-stdlib-jdk8</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2020-07-02 15:12:31 +02:00
|
|
|
<dependency>
|
2022-07-21 15:31:12 -07:00
|
|
|
<groupId>com.google.summit</groupId>
|
2022-10-11 17:35:21 +00:00
|
|
|
<artifactId>summit-ast</artifactId>
|
2024-04-26 17:03:21 +02:00
|
|
|
<version>2.2.1-SNAPSHOT</version>
|
2023-03-02 15:11:16 +01:00
|
|
|
</dependency>
|
2017-08-15 11:25:38 +02:00
|
|
|
|
2020-10-22 21:40:44 +01:00
|
|
|
<dependency>
|
2024-05-23 13:25:26 +02:00
|
|
|
<groupId>io.github.apex-dev-tools</groupId>
|
|
|
|
<artifactId>apex-ls_2.13</artifactId>
|
|
|
|
<version>5.2.0</version>
|
2020-10-22 21:40:44 +01:00
|
|
|
</dependency>
|
2021-02-23 19:24:00 +01:00
|
|
|
|
2020-07-02 15:12:31 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
|
</dependency>
|
2017-09-23 22:27:34 +02:00
|
|
|
|
2020-07-02 15:12:31 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.hamcrest</groupId>
|
|
|
|
<artifactId>hamcrest</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2022-04-29 16:48:09 +02:00
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter</artifactId>
|
2020-07-02 15:12:31 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.stefanbirkner</groupId>
|
2022-07-01 10:11:58 +02:00
|
|
|
<artifactId>system-lambda</artifactId>
|
2020-07-02 15:12:31 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.sourceforge.pmd</groupId>
|
|
|
|
<artifactId>pmd-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.sourceforge.pmd</groupId>
|
|
|
|
<artifactId>pmd-lang-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2016-03-11 13:30:05 +01:00
|
|
|
</project>
|