pmd/pmd-ruby/pom.xml

37 lines
1.2 KiB
XML
Raw Permalink Normal View History

2014-10-04 20:09:46 +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-ruby</artifactId>
<name>PMD Ruby</name>
<parent>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd</artifactId>
<version>7.8.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
2014-10-04 20:09:46 +02:00
</parent>
<dependencies>
<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-core</artifactId>
2014-10-04 20:09:46 +02:00
</dependency>
2014-10-11 13:26:10 +02:00
<dependency>
2022-10-03 09:27:08 +02:00
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
2014-10-04 20:09:46 +02:00
<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-test</artifactId>
<scope>test</scope>
</dependency>
2020-06-13 22:08:53 +02:00
<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-lang-test</artifactId>
<scope>test</scope>
</dependency>
2014-10-04 20:09:46 +02:00
</dependencies>
</project>