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/03/30 18:34:44 UTC

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

Author: tvolkert
Date: Mon Mar 30 16:34:43 2009
New Revision: 760035

URL: http://svn.apache.org/viewvc?rev=760035&view=rev
Log:
Added "incubating" to the dist JAR filenames

Modified:
    incubator/pivot/trunk/build.xml

Modified: incubator/pivot/trunk/build.xml
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/build.xml?rev=760035&r1=760034&r2=760035&view=diff
==============================================================================
--- incubator/pivot/trunk/build.xml (original)
+++ incubator/pivot/trunk/build.xml Mon Mar 30 16:34:43 2009
@@ -637,27 +637,22 @@
             </fileset>
         </copy>
 
-        <copy tofile="${dist}/${release}/build.xml" file="build-dist.xml" />
+        <copy tofile="${dist}/${release}/build.xml" file="build-dist.xml"/>
 
-        <copy todir="${dist}/${release}/${lib}">
-            <fileset dir="${charts}">
-                <include name="${ant.project.name}-charts.jar"/>
-            </fileset>
-            <fileset dir="${core}">
-                <include name="${ant.project.name}-core.jar"/>
-            </fileset>
-            <fileset dir="${web}">
-                <include name="${ant.project.name}-web.jar"/>
-                <include name="${ant.project.name}-web.server.jar"/>
-            </fileset>
-            <fileset dir="${wtk}">
-                <include name="${ant.project.name}-wtk.jar"/>
-                <include name="${ant.project.name}-wtk.terra.jar"/>
-            </fileset>
-            <fileset dir="${tools}">
-                <include name="${ant.project.name}-tools.jar"/>
-            </fileset>
-        </copy>
+        <copy file="${charts}/${ant.project.name}-charts.jar"
+            tofile="${dist}/${release}/${lib}/${ant.project.name}-charts-incubating.jar"/>
+        <copy file="${core}/${ant.project.name}-core.jar"
+            tofile="${dist}/${release}/${lib}/${ant.project.name}-core-incubating.jar"/>
+        <copy file="${web}/${ant.project.name}-web.jar"
+            tofile="${dist}/${release}/${lib}/${ant.project.name}-web-incubating.jar"/>
+        <copy file="${web}/${ant.project.name}-web.server.jar"
+            tofile="${dist}/${release}/${lib}/${ant.project.name}-web-incubating.server.jar"/>
+        <copy file="${wtk}/${ant.project.name}-wtk.jar"
+            tofile="${dist}/${release}/${lib}/${ant.project.name}-wtk-incubating.jar"/>
+        <copy file="${wtk}/${ant.project.name}-wtk.terra.jar"
+            tofile="${dist}/${release}/${lib}/${ant.project.name}-wtk-incubating.terra.jar"/>
+        <copy file="${tools}/${ant.project.name}-tools.jar"
+            tofile="${dist}/${release}/${lib}/${ant.project.name}-tools-incubating.jar"/>
 
         <copy todir="${dist}/${release}/${doc}">
             <fileset dir="${doc}"/>