[jboss-cvs] JBossAS SVN: r110793 - branches/JBPAPP_5_1/build.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Fri Feb 25 16:24:48 EST 2011


Author: fnasser at redhat.com
Date: 2011-02-25 16:24:48 -0500 (Fri, 25 Feb 2011)
New Revision: 110793

Modified:
   branches/JBPAPP_5_1/build/build.xml
Log:
Reverse the default to be unsigned

Modified: branches/JBPAPP_5_1/build/build.xml
===================================================================
--- branches/JBPAPP_5_1/build/build.xml	2011-02-25 20:52:06 UTC (rev 110792)
+++ branches/JBPAPP_5_1/build/build.xml	2011-02-25 21:24:48 UTC (rev 110793)
@@ -1549,14 +1549,14 @@
     <copy file="${moduleDest.output}/lib/run.jar" todir="${install.bin}"/>
    </target>
 
-  <target name="skipped_unsign" unless="build.signed">
+  <target name="skipped_unsign" if="build.signed">
 	<echo> "The 'build.signed' property was not specified (it doesn't matter what value was given), unsigning all JARs"</echo>
   </target>
 
    <!-- Unsigns all jars (rars, wars, ears) in JBoss AS located in ${install.root},
 	original JBoss AS with signed jars (rars, wars, ears) is moved to ${install.root}.signed.
 	Property unsign.supressBackup="true", disables backup of original signed JBoss AS. -->
-   <target name="unsign" description="Unsigns all jars in current JBoss AS." if="build.signed">
+   <target name="unsign" description="Unsigns all jars in current JBoss AS." unless="build.signed">
      <taskdef resource="net/sf/antcontrib/antlib.xml"
        classpath="${project.tools}/lib/ant-contrib-1.0b3.jar"/>  <!-- ant-contrib jar location -->
      <property name="sf" value="JBOSSCOD.SF"/>



More information about the jboss-cvs-commits mailing list