jaxws/build.xml
changeset 4137 a06d987928b2
parent 3885 90241d0c87b6
child 4298 05940e71b36b
--- a/jaxws/build.xml	Wed Jul 05 17:02:28 2017 +0200
+++ b/jaxws/build.xml	Fri Oct 23 11:06:56 2009 -0700
@@ -49,6 +49,13 @@
     <!-- Project build properties. -->
     <property file="build.properties"/>
 
+    <!-- See if drop sources were included. -->
+    <condition property="drop.dir" 
+               value="${drop.included.dir}" 
+               else="${drop.expanded.dir}">
+        <available file="${drop.included.dir}" type="dir"/>
+    </condition>
+
     <!-- Get shared targets. -->
     <import file="build-defs.xml"/>
 
@@ -131,6 +138,16 @@
             description="Populate all source file directories">
     </target>
 
+    <!-- Populate drop_included area. -->
+    <target name="drop_included"
+            depends="clobber"
+            description="Populate all source file directories">
+        <delete dir="${drop.included.dir}"/>
+        <antcall target="source"/>
+        <move file="${drop.expanded.dir}" tofile="${drop.included.dir}"/>
+        <delete dir="${drop.included.dir}/bundles"/>
+    </target>
+
     <!-- Clean up compiled files. -->
     <target name="clean"
             description="Delete all generated files">
@@ -142,7 +159,7 @@
     <target name="clobber"
 	    depends="clean"
             description="Delete all generated files, including imported sources">
-        <delete dir="${drop.dir}"/>
+        <delete dir="${drop.expanded.dir}"/>
     </target>
 
     <target name="-banner">