You are viewing a plain text version of this content. The canonical link for it is here.
Posted to svn@forrest.apache.org by rg...@apache.org on 2004/12/04 02:33:38 UTC

svn commit: r109749 - /forrest/trunk/plugins/build.xml

Author: rgardler
Date: Fri Dec  3 17:33:37 2004
New Revision: 109749

URL: http://svn.apache.org/viewcvs?view=rev&rev=109749
Log:
overwrite existing plugins.xml and plugin zip files when deploying
Modified:
   forrest/trunk/plugins/build.xml

Modified: forrest/trunk/plugins/build.xml
Url: http://svn.apache.org/viewcvs/forrest/trunk/plugins/build.xml?view=diff&rev=109749&p1=forrest/trunk/plugins/build.xml&r1=109748&p2=forrest/trunk/plugins/build.xml&r2=109749
==============================================================================
--- forrest/trunk/plugins/build.xml	(original)
+++ forrest/trunk/plugins/build.xml	Fri Dec  3 17:33:37 2004
@@ -35,7 +35,6 @@
   <property name="deploy.svn.user"            value=""/>
   <property name="deploy.svn.password"        value=""/>
   <property name="deploy.svn.url"             value="https://svn.apache.org/repos/asf/forrest/site/plugins"/>
-  <property name="deploy.svn.commit-message"  value="Automatic deployment from plugins build"/>
   <property name="deploy.svn.svn-dir"         location="${forrest.build.dir}/svn-plugins-deploy"/>
   <property name="deploy.svn.svn-filestoadd"  location="build/svn-deploy.toadd"/>
   
@@ -95,8 +94,12 @@
     />
     
     <!-- copy new files into sandbox -->
-    <copy todir="${deploy.svn.svn-dir}" file="${plugins.dist-dir}/${plugin-name}.zip"/>
-    <copy todir="${deploy.svn.svn-dir}" file="${forrest.plugins.dir}/plugins.xml"/>
+    <copy todir="${deploy.svn.svn-dir}" 
+          overwrite="true" 
+          file="${plugins.dist-dir}/${plugin-name}.zip"/>
+    <copy todir="${deploy.svn.svn-dir}" 
+          overwrite="true"
+          file="${forrest.plugins.dir}/plugins.xml"/>
     
     <!-- add new files to SVN -->
     <!-- svnadd doesn't work (it doesn't change the working directory properly) -->