Repository: commons-compress Updated Branches: refs/heads/master ddb8f08c7 -> 7fb627730
Refactor PMD plugin version into a POM property. Project: http://git-wip-us.apache.org/repos/asf/commons-compress/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-compress/commit/90157ea7 Tree: http://git-wip-us.apache.org/repos/asf/commons-compress/tree/90157ea7 Diff: http://git-wip-us.apache.org/repos/asf/commons-compress/diff/90157ea7 Branch: refs/heads/master Commit: 90157ea7ed7df7bfe15f965e6c2f9b49da544768 Parents: ddb8f08 Author: ggregory <[email protected]> Authored: Mon Apr 18 14:55:47 2016 -0700 Committer: ggregory <[email protected]> Committed: Mon Apr 18 14:55:47 2016 -0700 ---------------------------------------------------------------------- pom.xml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-compress/blob/90157ea7/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index a2df99b..fbe55a6 100644 --- a/pom.xml +++ b/pom.xml @@ -46,6 +46,7 @@ jar, tar, zip, dump, 7z, arj. <commons.release.version>${project.version}</commons.release.version> <commons.rc.version>RC1</commons.rc.version> <powermock.version>1.6.4</powermock.version> + <commons.pmd-plugin.version>3.2</commons.pmd-plugin.version> </properties> <issueManagement> @@ -241,7 +242,7 @@ jar, tar, zip, dump, 7z, arj. <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-pmd-plugin</artifactId> - <version>3.2</version> + <version>${commons.pmd-plugin.version}</version> <dependencies> <dependency> <groupId>net.sourceforge.pmd</groupId> @@ -265,7 +266,7 @@ jar, tar, zip, dump, 7z, arj. <!-- generate the PMD reports --> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-pmd-plugin</artifactId> - <version>3.2</version> + <version>${commons.pmd-plugin.version}</version> <configuration> <minimumTokens>200</minimumTokens> <targetJdk>${maven.compiler.source}</targetJdk>
