Author: dennisl
Date: Wed Jan 2 10:33:28 2008
New Revision: 608174
URL: http://svn.apache.org/viewvc?rev=608174&view=rev
Log:
o Reorder pom elements.
Modified:
maven/plugins/trunk/maven-pmd-plugin/pom.xml
Modified: maven/plugins/trunk/maven-pmd-plugin/pom.xml
URL:
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-pmd-plugin/pom.xml?rev=608174&r1=608173&r2=608174&view=diff
==============================================================================
--- maven/plugins/trunk/maven-pmd-plugin/pom.xml (original)
+++ maven/plugins/trunk/maven-pmd-plugin/pom.xml Wed Jan 2 10:33:28 2008
@@ -8,7 +8,7 @@
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
- http://www.apache.org/licenses/LICENSE-2.0
+ http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
@@ -16,7 +16,6 @@
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-
-->
<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/maven-v4_0_0.xsd">
<parent>
@@ -29,11 +28,19 @@
<packaging>maven-plugin</packaging>
<name>Maven PMD Plugin</name>
<version>2.3-SNAPSHOT</version>
- <inceptionYear>2005</inceptionYear>
+ <description>
+ A Maven plugin for the PMD toolkit, that produces a report on both code
rule violations and detected copy and paste
+ fragments,
+ as well as being able to fail the build based on these metrics.
+ </description>
+ <prerequisites>
+ <maven>2.0.6</maven>
+ </prerequisites>
<issueManagement>
<system>JIRA</system>
<url>http://jira.codehaus.org/browse/MPMD</url>
</issueManagement>
+ <inceptionYear>2005</inceptionYear>
<mailingLists>
<!-- duplication from maven-plugins pom - temporary until they inherit
properly
-->
@@ -86,14 +93,11 @@
<archive>http://mail-archives.apache.org/mod_mbox/maven-notifications/</archive>
</mailingList>
</mailingLists>
- <description>
- A Maven plugin for the PMD toolkit, that produces a report on both code
rule violations and detected copy and paste
- fragments,
- as well as being able to fail the build based on these metrics.
- </description>
- <prerequisites>
- <maven>2.0.6</maven>
- </prerequisites>
+ <contributors>
+ <contributor>
+ <name>John Allen</name>
+ </contributor>
+ </contributors>
<dependencies>
<dependency>
<groupId>org.apache.maven</groupId>
@@ -101,37 +105,31 @@
<version>2.0</version>
</dependency>
<dependency>
- <groupId>pmd</groupId>
- <artifactId>pmd-jdk14</artifactId>
- <version>4.1.1</version>
- </dependency>
- <dependency>
<groupId>org.apache.maven.reporting</groupId>
<artifactId>maven-reporting-impl</artifactId>
<version>2.0</version>
</dependency>
<dependency>
- <groupId>org.codehaus.plexus</groupId>
- <artifactId>plexus-utils</artifactId>
- <version>1.4.2</version>
- </dependency>
- <dependency>
<groupId>org.apache.maven.shared</groupId>
<artifactId>maven-plugin-testing-harness</artifactId>
<version>1.0-beta-1</version>
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
+ <artifactId>plexus-utils</artifactId>
+ <version>1.4.2</version>
+ </dependency>
+ <dependency>
+ <groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-resources</artifactId>
<version>1.0-alpha-4</version>
</dependency>
+ <dependency>
+ <groupId>pmd</groupId>
+ <artifactId>pmd-jdk14</artifactId>
+ <version>4.1.1</version>
+ </dependency>
</dependencies>
- <contributors>
- <contributor>
- <name>John Allen</name>
- </contributor>
- </contributors>
-
<reporting>
<plugins>
<plugin>
@@ -146,4 +144,3 @@
</plugins>
</reporting>
</project>
-