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 2009/08/29 04:18:55 UTC

svn commit: r809083 - /cxf/trunk/parent/pom.xml

Author: dkulp
Date: Sat Aug 29 02:18:55 2009
New Revision: 809083

URL: http://svn.apache.org/viewvc?rev=809083&view=rev
Log:
Add a flag to the location of the pmd/checkstyle things.   Still trying
to get sonar to work since the latest version of sonar.

Modified:
    cxf/trunk/parent/pom.xml

Modified: cxf/trunk/parent/pom.xml
URL: http://svn.apache.org/viewvc/cxf/trunk/parent/pom.xml?rev=809083&r1=809082&r2=809083&view=diff
==============================================================================
--- cxf/trunk/parent/pom.xml (original)
+++ cxf/trunk/parent/pom.xml Sat Aug 29 02:18:55 2009
@@ -78,6 +78,8 @@
         <extra.surefire.syspropery.name>None</extra.surefire.syspropery.name>
         <extra.surefire.syspropery.value>None</extra.surefire.syspropery.value>
 
+        <resources.base.path/>
+
     </properties>
 
 
@@ -198,11 +200,11 @@
                             <id>validate</id>
                             <phase>validate</phase>
                             <configuration>
-                                <configLocation>cxf-checkstyle${checkstyle.extension}.xml</configLocation>
+                                <configLocation>${resources.base.path}cxf-checkstyle${checkstyle.extension}.xml</configLocation>
                                 <consoleOutput>true</consoleOutput>
                                 <failsOnError>true</failsOnError>
                                 <linkXRef>false</linkXRef>
-                                <suppressionsLocation>cxf-checkstyle-suppressions.xml</suppressionsLocation>
+                                <suppressionsLocation>${resources.base.path}cxf-checkstyle-suppressions.xml</suppressionsLocation>
                                 <sourceDirectory>${basedir}/src</sourceDirectory>
                                 <excludes>**/archetype-resources/**/*.java</excludes>
                             </configuration>
@@ -225,8 +227,8 @@
                     </dependencies>
                     <configuration>
                         <rulesets>
-                            <ruleset>cxf-pmd-ruleset.xml</ruleset>
-                            <ruleset>cxf-pmd-custom.xml</ruleset>
+                            <ruleset>${resources.base.path}cxf-pmd-ruleset.xml</ruleset>
+                            <ruleset>${resources.base.path}cxf-pmd-custom.xml</ruleset>
                         </rulesets>
                         <sourceEncoding>UTF-8</sourceEncoding>
                         <targetJdk>1.5</targetJdk>