You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by ni...@apache.org on 2007/04/24 07:23:57 UTC

svn commit: r531730 - in /incubator/cxf/trunk/distribution/src/main/release/samples/integration/jca: hello_world_soap_http/build.xml inbound/build.xml

Author: ningjiang
Date: Mon Apr 23 22:23:56 2007
New Revision: 531730

URL: http://svn.apache.org/viewvc?view=rev&rev=531730
Log:
CXF-570 updated build.xml to work on jboss4.0.5

Modified:
    incubator/cxf/trunk/distribution/src/main/release/samples/integration/jca/hello_world_soap_http/build.xml
    incubator/cxf/trunk/distribution/src/main/release/samples/integration/jca/inbound/build.xml

Modified: incubator/cxf/trunk/distribution/src/main/release/samples/integration/jca/hello_world_soap_http/build.xml
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/distribution/src/main/release/samples/integration/jca/hello_world_soap_http/build.xml?view=diff&rev=531730&r1=531729&r2=531730
==============================================================================
--- incubator/cxf/trunk/distribution/src/main/release/samples/integration/jca/hello_world_soap_http/build.xml (original)
+++ incubator/cxf/trunk/distribution/src/main/release/samples/integration/jca/hello_world_soap_http/build.xml Mon Apr 23 22:23:56 2007
@@ -69,6 +69,8 @@
         <copy todir="${jboss.home}/lib/endorsed">
             <fileset dir="${cxf.home}/lib">
                 <include name="*activation*" />
+                <include name="*annotation*" />
+                <include name="*ws-metadata*" />
                 <include name="jaxb*" />
                 <include name="stax*" />
                 <include name="jsr181*" />
@@ -123,14 +125,23 @@
         </copy>
     </target>
 
-    <target name="war" />
    
-    <target name="build" description="compile the code" depends="clean,init,j2ee.compile,build-war"/>
+    <target name="build" description="compile the code" depends="init,j2ee.compile,build-war"/>
 
     <target name="generate.code">
         <echo level="info" message="Generating code using wsdl2java..."/>
         <wsdl2java file="hello_world.wsdl"/>
     </target>
+
+     <target name="clean">
+        <delete failonerror="no">
+            <fileset dir="./build" includes="**/*.class"/>
+            <fileset dir="./build" includes="**/*.jar"/>
+            <fileset dir="./build" includes="**/*.rar"/>
+            <fileset dir="${build.classes.dir}/cxf-rar" includes="**/*"/>
+        </delete>
+    </target>
+
 
     <!--target name="server" description="run demo server" depends="build">
       <property name="param" value=""/>

Modified: incubator/cxf/trunk/distribution/src/main/release/samples/integration/jca/inbound/build.xml
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/distribution/src/main/release/samples/integration/jca/inbound/build.xml?view=diff&rev=531730&r1=531729&r2=531730
==============================================================================
--- incubator/cxf/trunk/distribution/src/main/release/samples/integration/jca/inbound/build.xml (original)
+++ incubator/cxf/trunk/distribution/src/main/release/samples/integration/jca/inbound/build.xml Mon Apr 23 22:23:56 2007
@@ -57,7 +57,6 @@
         <replace file="${cxf.home}/etc/ra.xml" token="CXF_HOME" value="${cxf.home}"/>
     </target>
 
-    <target name="war"/>
 
     <target name="init">
         <!--mkdir dir="${build.classes.dir}"/-->
@@ -69,6 +68,8 @@
     <target name="update.jboss.endorsed">
         <copy todir="${jboss.home}/lib/endorsed">
             <fileset dir="${cxf.home}/lib">
+                <include name="*annotation*" />
+                <include name="*ws-metadata*" />
                 <include name="activation*" />
                 <include name="jaxb*" />
                 <include name="stax*" />
@@ -106,7 +107,7 @@
     </target>
 
 
-    <target name="build" description="compile the code" depends="clean,init,j2ee.compile,build.ejb.jar"/>
+    <target name="build" description="compile the code" depends="init,j2ee.compile,build.ejb.jar"/>
 
 
     <target name="j2ee.compile">
@@ -123,9 +124,9 @@
 
     <target name="clean">
         <delete failonerror="no">
-            <fileset dir="./src" includes="**/*.class"/>
-            <fileset dir="." includes="**/*.jar"/>
-            <fileset dir="." includes="**/*.rar"/>
+            <fileset dir="./build" includes="**/*.class"/>
+            <fileset dir="./build" includes="**/*.jar"/>
+            <fileset dir="./build/lib" includes="**/*.rar"/>
             <fileset dir="${build.classes.dir}/cxf-rar" includes="**/*"/>
         </delete>
     </target>