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:28:07 UTC

svn commit: r693795 - in /cxf/branches/2.1.x-fixes: ./ distribution/src/main/release/samples/mtom/build.xml

Author: ulhasbhole
Date: Wed Sep 10 04:28:07 2008
New Revision: 693795

URL: http://svn.apache.org/viewvc?rev=693795&view=rev
Log:
Merged revisions 693794 via svnmerge from 
http://svn.eu.apache.org/repos/asf/cxf/trunk

........
  r693794 | ulhasbhole | 2008-09-10 12:21:07 +0100 (Wed, 10 Sep 2008) | 3 lines
  
  * Fixed build failure in mtom sample. resource file was being copied to wrong location.
........

Modified:
    cxf/branches/2.1.x-fixes/   (props changed)
    cxf/branches/2.1.x-fixes/distribution/src/main/release/samples/mtom/build.xml

Propchange: cxf/branches/2.1.x-fixes/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.

Modified: cxf/branches/2.1.x-fixes/distribution/src/main/release/samples/mtom/build.xml
URL: http://svn.apache.org/viewvc/cxf/branches/2.1.x-fixes/distribution/src/main/release/samples/mtom/build.xml?rev=693795&r1=693794&r2=693795&view=diff
==============================================================================
--- cxf/branches/2.1.x-fixes/distribution/src/main/release/samples/mtom/build.xml (original)
+++ cxf/branches/2.1.x-fixes/distribution/src/main/release/samples/mtom/build.xml Wed Sep 10 04:28: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"