mirror of
https://github.com/apache/maven.git
synced 2025-02-08 02:59:22 +00:00
separate api from implementation keeping most of doxia, reporting and other libraries out of the core git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@220009 13f79535-47bb-0310-9956-ffa450edef68
37 lines
1.0 KiB
XML
37 lines
1.0 KiB
XML
<project>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<artifactId>maven-plugin-parent</artifactId>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<version>2.0-beta-1-SNAPSHOT</version>
|
|
</parent>
|
|
<artifactId>maven-pmd-plugin</artifactId>
|
|
<version>2.0-alpha-2-SNAPSHOT</version>
|
|
<packaging>maven-plugin</packaging>
|
|
<name>Maven PMD Plugin</name>
|
|
<inceptionYear>2005</inceptionYear>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.maven.reporting</groupId>
|
|
<artifactId>maven-reporting-impl</artifactId>
|
|
<version>2.0-beta-1-SNAPSHOT</version>
|
|
</dependency>
|
|
<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>
|