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

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Mar 3 07:34:32 EST 2011


Author: jcosta at redhat.com
Date: 2011-03-03 07:34:32 -0500 (Thu, 03 Mar 2011)
New Revision: 110826

Modified:
   branches/JBPAPP_5_1/build/build.xml
Log:
JBPAPP-5989 - Unsign also the thirdparty directory. Fix the MANIFEST.MF issue, as it was creating a new one instead of keeping the old one.

Modified: branches/JBPAPP_5_1/build/build.xml
===================================================================
--- branches/JBPAPP_5_1/build/build.xml	2011-03-02 22:54:57 UTC (rev 110825)
+++ branches/JBPAPP_5_1/build/build.xml	2011-03-03 12:34:32 UTC (rev 110826)
@@ -1437,6 +1437,13 @@
         </condition>
       </fail>
       
+      <!-- Unsigns jars in thirdparty directory. -->
+      <antcall target="skipped_unsign"/>
+      <antcall target="unsign">
+	  <param name="install.root" value="${basedir}/../thirdparty"/>
+	  <param name="unsign.supressBackup" value="true"/>
+      </antcall>
+      
    </target>
 
   <!-- Call maven to build the mavenized modules -->
@@ -1584,7 +1591,7 @@
 	 </fileset>
        </path>
        <sequential>
-	   <jar destfile="@{file}-unsigned">
+	   <jar destfile="@{file}-unsigned" filesetmanifest="merge">
 	      <zipfileset src="@{file}">
 		<exclude name="**/*${sf}"/>
 		<exclude name="**/*${rsa}"/>



More information about the jboss-cvs-commits mailing list