You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by br...@apache.org on 2016/06/19 17:34:23 UTC

svn commit: r1749188 - /commons/proper/bcel/trunk/pom.xml

Author: britter
Date: Sun Jun 19 17:34:23 2016
New Revision: 1749188

URL: http://svn.apache.org/viewvc?rev=1749188&view=rev
Log:
Better include maven baseDir when specifing file paths

Modified:
    commons/proper/bcel/trunk/pom.xml

Modified: commons/proper/bcel/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/bcel/trunk/pom.xml?rev=1749188&r1=1749187&r2=1749188&view=diff
==============================================================================
--- commons/proper/bcel/trunk/pom.xml [UTF-8] (original)
+++ commons/proper/bcel/trunk/pom.xml [UTF-8] Sun Jun 19 17:34:23 2016
@@ -282,7 +282,7 @@
         <artifactId>maven-checkstyle-plugin</artifactId>
         <version>${checkstyle.plugin.version}</version>
         <configuration>
-          <configLocation>src/conf/checkstyle.xml</configLocation>
+          <configLocation>${basedir}/src/conf/checkstyle.xml</configLocation>
           <!-- Needed to define config_loc -->
           <propertyExpansion>config_loc=${basedir}</propertyExpansion>
           <enableRulesSummary>false</enableRulesSummary>
@@ -315,7 +315,7 @@
         <artifactId>maven-checkstyle-plugin</artifactId>
         <version>${checkstyle.plugin.version}</version>
         <configuration>
-          <configLocation>src/conf/checkstyle.xml</configLocation>
+          <configLocation>${basedir}/src/conf/checkstyle.xml</configLocation>
           <!-- Needed to define config_loc -->
           <propertyExpansion>config_loc=${basedir}</propertyExpansion>
           <enableRulesSummary>false</enableRulesSummary>
@@ -408,7 +408,7 @@
       </activation>
       <properties>
         <!-- It's not possible to undefine this once defined, so we define it in a profile that is normally active -->
-        <clirr.ignoredDifferencesFile>src/conf/clirr-ignored-diffs.xml</clirr.ignoredDifferencesFile>
+        <clirr.ignoredDifferencesFile>${basedir}/src/conf/clirr-ignored-diffs.xml</clirr.ignoredDifferencesFile>
       </properties>
     </profile>
     <!-- Profile to build and run PerformanceTest. Use 'mvn test -Pjdk-rt' -->