You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by se...@apache.org on 2002/09/05 00:09:53 UTC

cvs commit: xml-axis/java/test/wsdl/wrapped build.xml

seibert     2002/09/04 15:09:53

  Modified:    java/test/wsdl/wrapped build.xml
  Log:
  Added in the complex copy
  
  Revision  Changes    Path
  1.4       +7 -4      xml-axis/java/test/wsdl/wrapped/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/test/wsdl/wrapped/build.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- build.xml	26 Aug 2002 20:56:55 -0000	1.3
  +++ build.xml	4 Sep 2002 22:09:53 -0000	1.4
  @@ -62,16 +62,19 @@
           <mapping namespace="urn:CityBBB" package="test.wsdl.wrapped"/>
       </wsdl2java>
   
  +    <copy todir="${build.dir}/work/${componentName}" overwrite="yes">
  +      <fileset dir="${axis.home}/${componentName}">
  +        <include name="*TestCase.java"/>
  +        <include name="*Impl.java"/>
  +      </fileset>
  +    </copy>
  +
       <javac srcdir="${build.dir}/work" destdir="${build.dest}"
              debug="${debug}">
         <classpath refid="classpath" />
         <include name="test/wsdl/wrapped/*.java" />
       </javac>
   
  -    <javac srcdir="${axis.home}" destdir="${build.dest}"
  -           debug="${debug}">
  -      <include name="test/wsdl/wrapped/*.java" />
  -    </javac>
   </target>
   
   <target name="run" >