summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Steiner <ssteiner@apache.org>2014-08-21 15:09:04 +0000
committerSimon Steiner <ssteiner@apache.org>2014-08-21 15:09:04 +0000
commitf92ab8b081fab203a70b573282188951ec015dcc (patch)
tree7320ebeabf9170fafd1f72f9bcafb1ab792f756d
parent2e06f0dd3914d9d09e95ced4ae27090b1b42d26b (diff)
downloadxmlgraphics-fop-f92ab8b081fab203a70b573282188951ec015dcc.tar.gz
xmlgraphics-fop-f92ab8b081fab203a70b573282188951ec015dcc.zip
Rename checkstyle property to avoid gump version
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1619430 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--build.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/build.xml b/build.xml
index b6c7f3706..5c0434a90 100644
--- a/build.xml
+++ b/build.xml
@@ -1047,10 +1047,10 @@ NOTE:
<!-- =================================================================== -->
<!-- Checkstyle -->
<!-- =================================================================== -->
- <property name="checkstyle.location" value="${lib-tools}/checkstyle-5.5-all.jar" />
+ <property name="checkstyle.fop.location" value="${lib-tools}/checkstyle-5.5-all.jar" />
<property name="checkstyle.config" value="${basedir}/checkstyle-5.5.xml" />
<path id="checkstyle-classpath">
- <pathelement location="${checkstyle.location}"/>
+ <pathelement location="${checkstyle.fop.location}"/>
</path>
<condition property="checkstyle.avail">
<and>
@@ -1062,7 +1062,7 @@ NOTE:
</condition>
<target name="checkstyle-avail" unless="checkstyle.avail">
<echo message="Checkstyle support NOT present. Please download it from http://checkstyle.sf.net/ and"/>
- <echo message="... please provide ${checkstyle.location}"/>
+ <echo message="... please provide ${checkstyle.fop.location}"/>
<echo message="... please provide ${checkstyle.config}"/>
</target>
<target name="checkstyle" depends="package, checkstyle-avail" if="checkstyle.avail" description="Runs Checkstyle for a code quality report">