You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by ul...@apache.org on 2008/09/10 13:21:08 UTC

svn commit: r693794 - /cxf/trunk/distribution/src/main/release/samples/mtom/build.xml

Author: ulhasbhole
Date: Wed Sep 10 04:21:07 2008
New Revision: 693794

URL: http://svn.apache.org/viewvc?rev=693794&view=rev
Log:
* Fixed build failure in mtom sample. resource file was being copied to wrong location.


Modified:
    cxf/trunk/distribution/src/main/release/samples/mtom/build.xml

Modified: cxf/trunk/distribution/src/main/release/samples/mtom/build.xml
URL: http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/mtom/build.xml?rev=693794&r1=693793&r2=693794&view=diff
==============================================================================
--- cxf/trunk/distribution/src/main/release/samples/mtom/build.xml (original)
+++ cxf/trunk/distribution/src/main/release/samples/mtom/build.xml Wed Sep 10 04:21:07 2008
@@ -22,7 +22,7 @@
     <import file="../common_build.xml"/>        
         
     <target name="client" description="run demo client" depends="build">
-        <copy toFile="${build.classes.dir}/me.bmp" file="${basedir}/src/demo/mtom/client/me.bmp"/>
+        <copy toFile="${build.classes.dir}/demo/mtom/client/me.bmp" file="${basedir}/src/demo/mtom/client/me.bmp"/>
         <property name="param" value=""/>
         <cxfrun classname="demo.mtom.client.Client"
             param1="${basedir}/wsdl/mtom_xop.wsdl"