You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pivot.apache.org by gb...@apache.org on 2009/06/17 22:30:11 UTC

svn commit: r785781 - /incubator/pivot/trunk/build.xml

Author: gbrown
Date: Wed Jun 17 20:30:10 2009
New Revision: 785781

URL: http://svn.apache.org/viewvc?rev=785781&view=rev
Log:
Update build script.

Modified:
    incubator/pivot/trunk/build.xml

Modified: incubator/pivot/trunk/build.xml
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/build.xml?rev=785781&r1=785780&r2=785781&view=diff
==============================================================================
--- incubator/pivot/trunk/build.xml (original)
+++ incubator/pivot/trunk/build.xml Wed Jun 17 20:30:10 2009
@@ -737,6 +737,31 @@
             </fileset>
         </copy>
 
+        <!-- Sign demo dependencies -->
+        <mkdir dir="demos/lib/signed"/>
+        <copy todir="demos/lib/signed">
+            <fileset dir="demos/lib" includes="*.jar"/>
+        </copy>
+
+        <signjar keystore="${keystore.location}" storepass="${keystore.passwd}" alias="${keystore.alias}"
+            preservelastmodified="true" lazy="true">
+            <path>
+                <fileset dir="demos/lib/signed" includes="*.jar" />
+            </path>
+        </signjar>
+
+        <copy todir="demos/www/lib">
+            <fileset dir="demos/lib" includes="*.jar" />
+        </copy>
+
+        <copy todir="demos/www/lib">
+            <fileset dir="demos/lib/signed" includes="*.jar" />
+            <mapper type="glob" from="*.jar" to="*.signed.jar"/>
+        </copy>
+
+        <delete dir="demos/lib/signed"/>
+
+        <!-- Generate demo HTML files -->
         <copy todir="demos/www" filtering="true">
             <fileset dir="demos/www">
                 <include name="*.template.html"/>
@@ -760,6 +785,7 @@
             </fileset>
         </copy>
 
+        <!-- Generate tutorial HTML files -->
         <copy todir="tutorials/www" filtering="true">
             <fileset dir="tutorials/www">
                 <include name="*.template.html"/>
@@ -797,6 +823,7 @@
             </fileset>
         </copy>
 
+        <!-- Generate web test HTML files -->
         <copy todir="web/www" filtering="true">
             <fileset dir="web/www">
                 <include name="*.template.html"/>