diff options
author | Simon Steiner <ssteiner@apache.org> | 2014-08-27 07:28:22 +0000 |
---|---|---|
committer | Simon Steiner <ssteiner@apache.org> | 2014-08-27 07:28:22 +0000 |
commit | 78c6c60654de40ad6c89654dab7544310305925d (patch) | |
tree | 954a8b7d9686eae9474c8d1e5203db617d7221f8 | |
parent | f00026470476b32991733c7529fbbacb33210843 (diff) | |
download | xmlgraphics-fop-78c6c60654de40ad6c89654dab7544310305925d.tar.gz xmlgraphics-fop-78c6c60654de40ad6c89654dab7544310305925d.zip |
Disable checkstyle on gump
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1620784 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | build.xml | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1052,10 +1052,10 @@ NOTE: <!-- =================================================================== --> <!-- Checkstyle --> <!-- =================================================================== --> - <property name="checkstyle.fop.location" value="${lib-tools}/checkstyle-5.5-all.jar" /> + <property name="checkstyle.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.fop.location}"/> + <pathelement location="${checkstyle.location}"/> </path> <condition property="checkstyle.avail"> <and> @@ -1067,7 +1067,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.fop.location}"/> + <echo message="... please provide ${checkstyle.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"> @@ -1515,7 +1515,7 @@ NOTE: <!-- Special target for Gump --> <!-- =================================================================== --> <target name="gump" depends="package,transcoder-pkg"/> - <target name="gump-test" depends="junit-all,checkstyle"> + <target name="gump-test" depends="junit-all"> <fail> <condition> <or> |