aboutsummaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorBenedikt Ritter <britter@apache.org>2016-06-19 17:34:23 +0000
committerBenedikt Ritter <britter@apache.org>2016-06-19 17:34:23 +0000
commit2f3ce1debb2f8b49a381bb6ae0709203d7403aa2 (patch)
treee7bee364e91f482d1e8a76dcef61107af4365e1b /pom.xml
parent349f502a9a01aa98199fb66208c1dff70ed98d55 (diff)
downloadapache-commons-bcel-2f3ce1debb2f8b49a381bb6ae0709203d7403aa2.tar.gz
Better include maven baseDir when specifing file paths
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/bcel/trunk@1749188 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/pom.xml b/pom.xml
index 2a09deaf..27070617 100644
--- a/pom.xml
+++ b/pom.xml
@@ -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' -->