You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fx-dev@ws.apache.org by di...@apache.org on 2005/06/06 18:53:46 UTC

cvs commit: ws-fx/wss4j/test/secconv/scenarios build.xml

dims        2005/06/06 09:53:46

  Modified:    wss4j    build.xml
  Removed:     wss4j/test/secconv/scenarios build.xml
  Log:
  Remove extra build.xml and clean up build process for the generated code.
  
  Revision  Changes    Path
  1.28      +25 -6     ws-fx/wss4j/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/ws-fx/wss4j/build.xml,v
  retrieving revision 1.27
  retrieving revision 1.28
  diff -u -r1.27 -r1.28
  --- build.xml	5 Jun 2005 19:14:13 -0000	1.27
  +++ build.xml	6 Jun 2005 16:53:46 -0000	1.28
  @@ -350,7 +350,31 @@
   
           <javac srcdir="${dir.test}" destdir="${build.classes}" debug="on">
               <classpath refid="classpath.test"/>
  -            <exclude name="**/secconv/*.java"/>
  +            <exclude name="**/secconv/**/*.java"/>
  +        </javac>
  +
  +        <mkdir dir="${build.work}"/>
  +
  +        <axis-wsdl2java
  +            output="${build.work}"
  +            serverSide="yes"
  +            testcase="no"
  +            verbose="no"
  +            url="${dir.test}/secconv/scenarios/ping.wsdl">
  +            <mapping
  +                namespace="http://xmlsoap.org/Ping"
  +                package="secconv.scenarios.ping.impl"/>
  +        </axis-wsdl2java>
  +
  +        <copy todir="${build.work}/secconv/" overwrite="yes">
  +          <fileset dir="${dir.test}/secconv/">
  +            <include name="**/*.java"/>
  +            <include name="**/*.wsdd"/>
  +          </fileset>
  +        </copy>
  +
  +        <javac srcdir="${build.work}" destdir="${build.classes}" debug="on">
  +            <classpath refid="classpath.test"/>
           </javac>
   
           <!-- Copy Property files -->
  @@ -383,11 +407,6 @@
               target="compile"
               inheritAll="false">
           </ant>
  -        <ant dir="test/secconv/scenarios"
  -            antfile="build.xml"
  -            target="compile"
  -            inheritAll="false">
  -        </ant>
       </target>
   
       <target name="systemTests" depends="compile"