You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pivot.apache.org by tv...@apache.org on 2009/12/04 18:55:27 UTC

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

Author: tvolkert
Date: Fri Dec  4 17:55:27 2009
New Revision: 887300

URL: http://svn.apache.org/viewvc?rev=887300&view=rev
Log:
Updated build file to force XSLT generation even if target files are newer than source files (the stylesheet itself may have been changed), and to eliminate deploy targets dependency on the "clean" target (it's easy to run 'ant clean deploy' if this is the behavior you want)

Modified:
    incubator/pivot/trunk/build.xml

Modified: incubator/pivot/trunk/build.xml
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/build.xml?rev=887300&r1=887299&r2=887300&view=diff
==============================================================================
--- incubator/pivot/trunk/build.xml (original)
+++ incubator/pivot/trunk/build.xml Fri Dec  4 17:55:27 2009
@@ -417,7 +417,7 @@
     </target>
 
     <!-- Generate deployment files -->
-    <target name="deploy" depends="clean, package">
+    <target name="deploy" depends="package">
         <!-- Sign JARS -->
         <mkdir dir="${folder.lib}/signed"/>
         <copy todir="${folder.lib}/signed">
@@ -457,6 +457,7 @@
         <xslt basedir="demos/www"
             destdir="demos/${folder.deploy}"
             extension=".html"
+            force="true"
             style="demos/xsl/index.xsl"
             includes="index.xml"/>
 
@@ -464,6 +465,7 @@
         <xslt basedir="demos/www"
             destdir="demos/${folder.deploy}"
             extension=".html"
+            force="true"
             style="demos/xsl/demo.html.xsl"
             includes="*.xml"
             excludes="index.xml">
@@ -475,6 +477,7 @@
         <xslt basedir="demos/www"
             destdir="demos/${folder.deploy}"
             extension=".jnlp"
+            force="true"
             style="demos/xsl/demo.jnlp.xsl"
             includes="*.xml"
             excludes="index.xml">
@@ -505,6 +508,7 @@
         <xslt basedir="tutorials/www"
             destdir="tutorials/${folder.deploy}"
             extension=".html"
+            force="true"
             style="tutorials/xsl/index.xsl"
             includes="index.xml"/>
 
@@ -512,6 +516,7 @@
         <xslt basedir="tutorials/www"
             destdir="tutorials/${folder.deploy}"
             extension=".html"
+            force="true"
             style="tutorials/xsl/tutorial.xsl"
             includes="*.xml"
             excludes="index.xml">