pmd/pmd-lang-test/pom.xml

148 lines
5.4 KiB
XML
Raw Normal View History

<?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-lang-test</artifactId>
<name>PMD language module testing utilities</name>
<description>
Module containing utilities to test language implementations,
including parsers and ASTs. This module uses Kotlin.
</description>
<parent>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd</artifactId>
<version>7.8.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<build>
<plugins>
2021-04-03 22:55:39 +02:00
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.jetbrains.kotlin</groupId>
2024-02-23 10:50:58 +01:00
<artifactId>kotlin-maven-plugin</artifactId>
</plugin>
2021-03-27 18:17:09 +01: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>
<!-- disable this execution, as we are using dokka-maven-plugin here -->
<phase>none</phase>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.jetbrains.dokka</groupId>
<artifactId>dokka-maven-plugin</artifactId>
2024-02-27 19:49:23 +01:00
<configuration>
<!-- overrides the configuration from parent pom: we have here only pmd-core and pmd-test available -->
<externalDocumentationLinks combine.self="override">
<link>
<url>https://docs.pmd-code.org/apidocs/pmd-core/${project.version}/</url>
<packageListUrl>file://${project.basedir}/../pmd-core/target/apidocs/element-list</packageListUrl>
</link>
<link>
<url>https://docs.pmd-code.org/apidocs/pmd-test/${project.version}/</url>
<packageListUrl>file://${project.basedir}/../pmd-test/target/apidocs/element-list</packageListUrl>
</link>
</externalDocumentationLinks>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-core</artifactId>
</dependency>
2020-07-02 14:16:39 +02:00
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>
<!--
the following dependencies are all scope compile,
2020-07-02 14:16:39 +02:00
so that they can be used here in src/main and also
so that they are automatically available to users
of the pmd-lang-test module
-->
2020-07-02 14:16:39 +02:00
<dependency>
2020-07-20 00:12:40 +02:00
<groupId>io.kotest</groupId>
<artifactId>kotest-assertions-core-jvm</artifactId>
2020-07-02 14:16:39 +02:00
<scope>compile</scope>
</dependency>
2020-07-31 01:10:00 +02:00
<dependency>
<groupId>io.kotest</groupId>
<artifactId>kotest-property-jvm</artifactId>
<scope>compile</scope>
</dependency>
2020-07-02 14:16:39 +02:00
<dependency>
2020-07-20 00:12:40 +02:00
<!-- Contains stuff like FunSpec, etc -->
<groupId>io.kotest</groupId>
<artifactId>kotest-runner-junit5-jvm</artifactId>
2020-07-02 14:16:39 +02:00
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest</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>
2019-09-14 15:04:38 +02:00
<artifactId>kotlin-reflect</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-jdk8</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-test-junit</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.github.oowekyala.treeutils</groupId>
<artifactId>tree-matchers</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.github.oowekyala.treeutils</groupId>
2020-07-02 14:16:39 +02:00
<artifactId>tree-printers</artifactId>
<scope>compile</scope>
</dependency>
</dependencies>
</project>