You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@river.apache.org by si...@apache.org on 2010/12/17 00:20:49 UTC

svn commit: r1050223 - /incubator/river/jtsk/trunk/release.xml

Author: sijskes
Date: Thu Dec 16 23:20:49 2010
New Revision: 1050223

URL: http://svn.apache.org/viewvc?rev=1050223&view=rev
Log:
intermed checkin

Modified:
    incubator/river/jtsk/trunk/release.xml

Modified: incubator/river/jtsk/trunk/release.xml
URL: http://svn.apache.org/viewvc/incubator/river/jtsk/trunk/release.xml?rev=1050223&r1=1050222&r2=1050223&view=diff
==============================================================================
--- incubator/river/jtsk/trunk/release.xml (original)
+++ incubator/river/jtsk/trunk/release.xml Thu Dec 16 23:20:49 2010
@@ -18,7 +18,28 @@
  !-->
 <project name="release" basedir="." >
 
+    <macrodef name="svn-copy" >
+        <attribute name="src" />
+        <attribute name="dst" />
+        <attribute name="log" default="none" />
+        <sequential>
+            <exec executable="svn" failonerror="true" >
+                <arg value="copy" />
+                <arg value="@{src}" />
+                <arg value="@{dst}" />
+                <arg value="-M" />
+                <arg value="@{log}" />
+            </exec>
+        </sequential>
+    </macrodef>
+
+    <property name="svnbase" value="https://svn.apache.org/repos/asf/incubator/river/" />
+
     <target name="copy-doc" >
+        <svn-copy
+            src="${svnbase}/jtsk/trunk/src-doc/static/specs/html/"
+            dst="${svnbase}/site/trunk/content/river/spec" />
+
     </target>
     
 </project>