Revision: 3761
Author: mo.jeff
Date: Tue Jul 20 08:18:25 2010
Log: Changed the default findbugs, pmd, and clover report formats to xml so
that they will just work in our hudson build environment without having to
create a custom build.properties (since we've configured the hudson builds
to delete the workspace every time)
http://code.google.com/p/power-architect/source/detail?r=3761
Modified:
/trunk/build.xml
=======================================
--- /trunk/build.xml Tue Jul 20 07:20:47 2010
+++ /trunk/build.xml Tue Jul 20 08:18:25 2010
@@ -205,7 +205,7 @@
<!--
Set the format of the findbugs report to html by default
-->
- <condition property="findbugs.report.format" value="html">
+ <condition property="findbugs.report.format" value="xml">
<not>
<isset property="findbugs.report.format"/>
</not>
@@ -214,7 +214,7 @@
<!--
Set the format of the pmd report to html by default
-->
- <condition property="pmd.report.format" value="html">
+ <condition property="pmd.report.format" value="xml">
<not>
<isset property="pmd.report.format"/>
</not>
@@ -223,7 +223,7 @@
<!--
Set the format of the clover report to html by default
-->
- <condition property="clover.report.format" value="html">
+ <condition property="clover.report.format" value="xml">
<not>
<isset property="clover.report.format"/>
</not>
@@ -1480,9 +1480,9 @@
</target>
<target name="copy.sqlpower.library"
depends="check.sqlpower.library.dir">
- <copy file="${sqlpower.library.home}/dist/sqlpower_library.jar"
todir="${buildlib}"/>
- <copy file="${sqlpower.library.home}/dist/sqlpower_library-tests.jar"
todir="${buildlib}"/>
- <copy file="${sqlpower.library.home}/dist/sqlpower_library-apt.jar"
todir="${buildlib}"/>
+ <copy file="${sqlpower.library.home}/dist/sqlpower_library.jar"
todir="${lib}"/>
+ <copy file="${sqlpower.library.home}/dist/sqlpower_library-tests.jar"
todir="${lib}"/>
+ <copy file="${sqlpower.library.home}/dist/sqlpower_library-apt.jar"
todir="${lib}"/>
</target>
<target name="architect.version.properties" depends="init">