mirror of
https://github.com/apache/maven.git
synced 2025-02-07 10:38:47 +00:00
a1ab59106e
o Reduce dependencies declaration git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@170965 13f79535-47bb-0310-9956-ffa450edef68
32 lines
914 B
XML
32 lines
914 B
XML
<project>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<artifactId>maven-report-parent</artifactId>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<version>2.0-SNAPSHOT</version>
|
|
</parent>
|
|
<artifactId>maven-pmd-plugin</artifactId>
|
|
<version>2.0-alpha-1-SNAPSHOT</version>
|
|
<packaging>maven-plugin</packaging>
|
|
<name>Maven PMD Plugin</name>
|
|
<inceptionYear>2005</inceptionYear>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>pmd</groupId>
|
|
<artifactId>pmd</artifactId>
|
|
<version>3.0</version>
|
|
</dependency>
|
|
<!-- TODO: should be in PMD pom -->
|
|
<dependency>
|
|
<groupId>jaxen</groupId>
|
|
<artifactId>jaxen</artifactId>
|
|
<version>1.0-FCS</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>saxpath</groupId>
|
|
<artifactId>saxpath</artifactId>
|
|
<version>1.0-FCS</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|