2015-01-09 15:20:25 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2019-09-15 10:14:05 +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">
|
2019-09-07 16:40:57 +02:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>pmd-scala</artifactId>
|
|
|
|
<name>PMD Scala</name>
|
2015-01-09 15:20:25 +01:00
|
|
|
|
2019-09-07 16:40:57 +02:00
|
|
|
<parent>
|
|
|
|
<groupId>net.sourceforge.pmd</groupId>
|
|
|
|
<artifactId>pmd</artifactId>
|
2020-03-12 15:15:18 +01:00
|
|
|
<version>6.23.0-SNAPSHOT</version>
|
2019-09-07 16:40:57 +02:00
|
|
|
</parent>
|
2015-01-09 15:20:25 +01:00
|
|
|
|
2019-09-07 16:40:57 +02:00
|
|
|
<properties>
|
|
|
|
<scalameta.version>4.2.0</scalameta.version>
|
|
|
|
</properties>
|
2015-01-09 15:20:25 +01:00
|
|
|
|
2019-09-07 16:40:57 +02:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<useDefaultDelimiters>false</useDefaultDelimiters>
|
|
|
|
<delimiters>
|
|
|
|
<delimiter>${*}</delimiter>
|
|
|
|
</delimiters>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2019-09-17 04:20:10 +02:00
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<artifactId>kotlin-maven-plugin</artifactId>
|
|
|
|
<groupId>org.jetbrains.kotlin</groupId>
|
|
|
|
</plugin>
|
|
|
|
|
2019-09-07 16:40:57 +02:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2016-12-02 15:05:25 +01:00
|
|
|
|
2019-09-07 16:40:57 +02:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.scalameta</groupId>
|
|
|
|
<artifactId>scalameta_2.13</artifactId>
|
|
|
|
<version>${scalameta.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.sourceforge.pmd</groupId>
|
|
|
|
<artifactId>pmd-core</artifactId>
|
|
|
|
</dependency>
|
2018-02-18 20:23:32 +01:00
|
|
|
|
2019-09-07 16:40:57 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-09-17 19:16:45 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.vintage</groupId>
|
|
|
|
<artifactId>junit-vintage-engine</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2019-09-07 16:40:57 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.sourceforge.pmd</groupId>
|
|
|
|
<artifactId>pmd-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-09-17 04:20:10 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.sourceforge.pmd</groupId>
|
|
|
|
<artifactId>pmd-lang-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-09-07 16:40:57 +02:00
|
|
|
</dependencies>
|
2015-01-09 15:20:25 +01:00
|
|
|
</project>
|