Preparing to release version 1.1
git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@113906 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1d75a19e91
commit
a0017acc04
27
pmd/announcements/1.1.ann
Normal file
27
pmd/announcements/1.1.ann
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
The Maven team is pleased to announce the PMD plugin 1.1 release!
|
||||||
|
|
||||||
|
http://maven.apache.org/reference/plugins/pmd
|
||||||
|
|
||||||
|
The Maven PMD plugin is a plugin that wraps the PMD framework
|
||||||
|
(http://pmd.sourceforge.net). PMD is a source checking framework that
|
||||||
|
works by scanning Java source code and looks for potential problems
|
||||||
|
like: unused local variables, empty catch blocks, unused parameters,
|
||||||
|
empty 'if' statements, etc.
|
||||||
|
|
||||||
|
Changes in this version:
|
||||||
|
|
||||||
|
o Adding maven.pmd.includes and maven.pmd.excludes to match functionality
|
||||||
|
in checkstyle plugin.
|
||||||
|
o Now respects pom.build.sourceModifications.
|
||||||
|
o Add xml declaration to generated report. Fixed for character encoding.
|
||||||
|
o Make sure the report does not fail if PMD does not detect any
|
||||||
|
violation. Fixes bug MAVEN-538
|
||||||
|
|
||||||
|
Note that this plugin has been tested with Maven beta 10. Using it with
|
||||||
|
another version of Maven is at your own risks! :-)
|
||||||
|
|
||||||
|
You can download the PMD Maven plugin here:
|
||||||
|
http://www.ibiblio.org/maven/maven/plugins/maven-pmd-plugin-1.1.jar
|
||||||
|
|
||||||
|
Have fun!
|
||||||
|
-Vincent
|
||||||
@ -5,7 +5,7 @@
|
|||||||
<pomVersion>3</pomVersion>
|
<pomVersion>3</pomVersion>
|
||||||
<id>maven-pmd-plugin</id>
|
<id>maven-pmd-plugin</id>
|
||||||
<name>Maven PMD Plug-in</name>
|
<name>Maven PMD Plug-in</name>
|
||||||
<currentVersion>1.1-SNAPSHOT</currentVersion>
|
<currentVersion>1.1</currentVersion>
|
||||||
<description>This plugin provides a more or less seamless integration with Maven and the PMD static source code analyzer</description>
|
<description>This plugin provides a more or less seamless integration with Maven and the PMD static source code analyzer</description>
|
||||||
<shortDescription>Maven Plugin for PMD</shortDescription>
|
<shortDescription>Maven Plugin for PMD</shortDescription>
|
||||||
<url>http://maven.apache.org/reference/plugins/pmd/</url>
|
<url>http://maven.apache.org/reference/plugins/pmd/</url>
|
||||||
@ -23,7 +23,7 @@
|
|||||||
<version>
|
<version>
|
||||||
<id>1.1</id>
|
<id>1.1</id>
|
||||||
<name>1.1</name>
|
<name>1.1</name>
|
||||||
<tag>HEAD</tag>
|
<tag>MAVEN_PMD_1_1</tag>
|
||||||
</version>
|
</version>
|
||||||
</versions>
|
</versions>
|
||||||
<developers>
|
<developers>
|
||||||
|
|||||||
@ -8,12 +8,14 @@
|
|||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
<release version="1.1" date="in CVS">
|
<release version="1.1" date="2003-08-30">
|
||||||
<action dev="epugh" type="add">
|
<action dev="epugh" type="add">
|
||||||
Adding maven.pmd.includes and maven.pmd.excludes to match functionality in checkstyle plugin.
|
Adding <code>maven.pmd.includes</code> and
|
||||||
|
<code>maven.pmd.excludes</code> to match functionality in checkstyle
|
||||||
|
plugin.
|
||||||
</action>
|
</action>
|
||||||
<action dev="dion" type="fix">
|
<action dev="dion" type="fix">
|
||||||
Now respects pom.build.sourceModifications
|
Now respects <code>pom.build.sourceModifications</code>.
|
||||||
</action>
|
</action>
|
||||||
<action dev="evenisse" type="fix">
|
<action dev="evenisse" type="fix">
|
||||||
Add xml declaration to generated report. Fixed for character encoding.
|
Add xml declaration to generated report. Fixed for character encoding.
|
||||||
|
|||||||
@ -5,14 +5,16 @@
|
|||||||
<title>Maven PMD Plugin</title>
|
<title>Maven PMD Plugin</title>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
<menu name="Home">
|
<menu name="Home">
|
||||||
<item name="Front Page" href="/index.html"/>
|
<item name="Front Page" href="/index.html"/>
|
||||||
<item name="Properties" href="/properties.html"/>
|
<item name="Properties" href="/properties.html"/>
|
||||||
<item name="Sample" href="/images/sample.gif"/>
|
<item name="Sample" href="/images/sample.gif"/>
|
||||||
<item name="How To's" href="/how-to.html"/>
|
<item name="How To's" href="/how-to.html"/>
|
||||||
</menu>
|
</menu>
|
||||||
|
<menu name="Downloads">
|
||||||
|
<item name="PMD Plugin 1.1" href="http://www.ibiblio.org/maven/maven/plugins/maven-pmd-plugin-1.1.jar"/>
|
||||||
|
<item name="PMD Plugin 1.0" href="http://www.ibiblio.org/maven/maven/plugins/maven-pmd-plugin-1.0.jar"/>
|
||||||
|
</menu>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user