[jboss-remoting-commits] JBoss Remoting SVN: r5715 - remoting2/branches/2.2.

jboss-remoting-commits at lists.jboss.org jboss-remoting-commits at lists.jboss.org
Wed Feb 17 10:50:32 EST 2010


Author: ron.sigal at jboss.com
Date: 2010-02-17 10:50:32 -0500 (Wed, 17 Feb 2010)
New Revision: 5715

Modified:
   remoting2/branches/2.2/build.xml
Log:
JBREM-1161: Moved findbugs taskdef inside findbugs target so ant won't look for findbugs unless the findbugs target is executed.

Modified: remoting2/branches/2.2/build.xml
===================================================================
--- remoting2/branches/2.2/build.xml	2010-02-17 15:48:26 UTC (rev 5714)
+++ remoting2/branches/2.2/build.xml	2010-02-17 15:50:32 UTC (rev 5715)
@@ -3910,10 +3910,9 @@
 
       <delete dir="${dist.dir}"/>
    </target>
-
-   <taskdef name="findbugs" classname="edu.umd.cs.findbugs.anttask.FindBugsTask"/>
 	
    <target name="findbugs" depends="jars">
+      <taskdef name="findbugs" classname="edu.umd.cs.findbugs.anttask.FindBugsTask"/>
       <findbugs home="${findbugs.home}" output="html" outputFile="${output.dir}/findbugs.html" >
          <class location="${output.lib.dir}/jboss-remoting.jar" />
          <sourcePath path="${src.dir}" />



More information about the jboss-remoting-commits mailing list