mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-22 12:02:05 +01:00
Format build.xml's checkcode target
Whitespace fix only. No semantic changes
This commit is contained in:
parent
f9d125127b
commit
89838f5843
1 changed files with 19 additions and 19 deletions
|
@ -547,25 +547,25 @@
|
||||||
<ant antfile="${basedir}/build/release.xml" />
|
<ant antfile="${basedir}/build/release.xml" />
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<!-- checkcode -->
|
<!-- checkcode -->
|
||||||
<!-- ======================================================================================= -->
|
<!-- ======================================================================================= -->
|
||||||
<target name="checkcode" >
|
<target name="checkcode" >
|
||||||
<taskdef name="pmd" classname="net.sourceforge.pmd.ant.PMDTask">
|
<taskdef name="pmd" classname="net.sourceforge.pmd.ant.PMDTask">
|
||||||
<classpath>
|
<classpath>
|
||||||
<pathelement location="${basedir}/build/pmd.jar" />
|
<pathelement location="${basedir}/build/pmd.jar" />
|
||||||
<pathelement location="${basedir}/build/asm.jar" />
|
<pathelement location="${basedir}/build/asm.jar" />
|
||||||
<pathelement location="${basedir}/build/jaxen.jar" />
|
<pathelement location="${basedir}/build/jaxen.jar" />
|
||||||
</classpath>
|
</classpath>
|
||||||
</taskdef>
|
</taskdef>
|
||||||
<pmd shortFilenames="true">
|
<pmd shortFilenames="true">
|
||||||
<ruleset>migrating</ruleset>
|
<ruleset>migrating</ruleset>
|
||||||
<ruleset>finalizers</ruleset>
|
<ruleset>finalizers</ruleset>
|
||||||
<formatter type="html" toFile="target/pmd_report.html" toConsole="true" />
|
<formatter type="html" toFile="target/pmd_report.html" toConsole="true" />
|
||||||
<fileset dir="source/">
|
<fileset dir="source/">
|
||||||
<include name="**/*.java" />
|
<include name="**/*.java" />
|
||||||
</fileset>
|
</fileset>
|
||||||
</pmd>
|
</pmd>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<!-- clean -->
|
<!-- clean -->
|
||||||
<!-- ======================================================================================= -->
|
<!-- ======================================================================================= -->
|
||||||
|
|
Loading…
Reference in a new issue