[jboss-remoting-commits] JBoss Remoting SVN: r5714 - remoting2/branches/2.x.

jboss-remoting-commits at lists.jboss.org jboss-remoting-commits at lists.jboss.org
Wed Feb 17 10:48:26 EST 2010


Author: ron.sigal at jboss.com
Date: 2010-02-17 10:48:26 -0500 (Wed, 17 Feb 2010)
New Revision: 5714

Modified:
   remoting2/branches/2.x/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.x/build.xml
===================================================================
--- remoting2/branches/2.x/build.xml	2010-02-17 04:42:07 UTC (rev 5713)
+++ remoting2/branches/2.x/build.xml	2010-02-17 15:48:26 UTC (rev 5714)
@@ -743,7 +743,7 @@
            manifest="${manifest.file}">
          <fileset dir="${compile.dir}">
             <include name="org/jboss/remoting/samples/**"/>
-       	    <include name="org/jboss/remoting/transport/bisocket/BisocketClientInvoker*"/>
+            <include name="org/jboss/remoting/transport/bisocket/BisocketClientInvoker*"/>
             <include name="org/jboss/remoting/transport/bisocket/BisocketServerInvoker*"/>
             <include name="org/jboss/remoting/transport/multiplex/**"/>
          </fileset>
@@ -1730,7 +1730,7 @@
      <antcall target="tests.servlet.marshal" inheritrefs="true"/>
      <antcall target="tests.servlet.marshal.config" inheritrefs="true"/>
      <antcall target="tests.servlet.marshal.noconfig" inheritrefs="true"/>
-   	 <antcall target="tests.servlet.mbeanserver.jboss" inheritrefs="true"/>
+     <antcall target="tests.servlet.mbeanserver.jboss" inheritrefs="true"/>
      <antcall target="tests.servlet.multihome" inheritrefs="true"/>
      <antcall target="tests.servlet.nopreservelines" inheritrefs="true"/>
      <antcall target="tests.servlet.preservelines" inheritrefs="true"/>
@@ -2280,7 +2280,7 @@
         </antcall>
       
     <!-- ******************************************************************************** -->
-   	<!--  Current <- -> 2.5.1 -->
+    <!--  Current <- -> 2.5.1 -->
       <antcall target="download.version">
          <param name="version" value="2.5.1"/>
       </antcall>
@@ -4613,9 +4613,8 @@
       <!--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