You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2015/02/12 19:15:33 UTC

cxf git commit: Update to use pmd and checkstyle rules that are compatible with the latest eclipse plugins

Repository: cxf
Updated Branches:
  refs/heads/master 2e701bcd1 -> 43babb8fc


Update to use pmd and checkstyle rules that are compatible with the latest eclipse plugins


Project: http://git-wip-us.apache.org/repos/asf/cxf/repo
Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/43babb8f
Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/43babb8f
Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/43babb8f

Branch: refs/heads/master
Commit: 43babb8fc1bfd034657eb44fe82fab960034c85d
Parents: 2e701bc
Author: Daniel Kulp <dk...@apache.org>
Authored: Thu Feb 12 13:15:08 2015 -0500
Committer: Daniel Kulp <dk...@apache.org>
Committed: Thu Feb 12 13:15:08 2015 -0500

----------------------------------------------------------------------
 parent/pom.xml | 16 +++++++++++++---
 pom.xml        |  2 +-
 2 files changed, 14 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cxf/blob/43babb8f/parent/pom.xml
----------------------------------------------------------------------
diff --git a/parent/pom.xml b/parent/pom.xml
index 04b7b6e..18424d9 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -307,6 +307,11 @@
                             <artifactId>cxf-buildtools</artifactId>
                             <version>${cxf.build-utils.version}</version>
                         </dependency>
+                        <dependency>
+                            <groupId>com.puppycrawl.tools</groupId>
+                            <artifactId>checkstyle</artifactId>
+                            <version>6.2</version>
+                        </dependency>
                     </dependencies>
                     <configuration>
                         <encoding>UTF-8</encoding>
@@ -334,7 +339,7 @@
                 <plugin>
                     <groupId>org.apache.maven.plugins</groupId>
                     <artifactId>maven-pmd-plugin</artifactId>
-                    <version>3.2</version>
+                    <version>3.4</version>
                     <dependencies>
                         <dependency>
                             <groupId>org.apache.cxf.build-utils</groupId>
@@ -343,8 +348,13 @@
                         </dependency>
                         <dependency>
                             <groupId>net.sourceforge.pmd</groupId>
-                            <artifactId>pmd</artifactId>
-                            <version>5.0.4</version>
+                            <artifactId>pmd-core</artifactId>
+                            <version>5.2.3</version>
+                        </dependency>
+                        <dependency>
+                            <groupId>net.sourceforge.pmd</groupId>
+                            <artifactId>pmd-java</artifactId>
+                            <version>5.2.3</version>
                         </dependency>
                     </dependencies>
                     <configuration>

http://git-wip-us.apache.org/repos/asf/cxf/blob/43babb8f/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 31debe6..e2d362b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -42,7 +42,7 @@
     </prerequisites>
     <properties>
         <cxf.compiler.fork>false</cxf.compiler.fork>
-        <cxf.build-utils.version>3.0.0</cxf.build-utils.version>
+        <cxf.build-utils.version>3.0.1-SNAPSHOT</cxf.build-utils.version>
         <cxf.xjc-utils.version>3.0.2</cxf.xjc-utils.version>
         <cxf.jdk.version>1.7</cxf.jdk.version>
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>