dims        2002/06/11 11:50:00

  Modified:    java     build.xml
  Log:
  Separate out the javax.xml.soap.* into its own jar.
  
  Revision  Changes    Path
  1.146     +8 -0      xml-axis/java/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/build.xml,v
  retrieving revision 1.145
  retrieving revision 1.146
  diff -u -r1.145 -r1.146
  --- build.xml 10 Jun 2002 13:58:13 -0000      1.145
  +++ build.xml 11 Jun 2002 18:50:00 -0000      1.146
  @@ -67,6 +67,7 @@
     <property name="year" value="2002"/>
   
     <property name="jaxrpc" value="jaxrpc"/>
  +  <property name="saaj" value="saaj"/>
   
     <!-- debug flag for ant javac, values are "on" and "off" -->
     <property name="debug" value="on"/>  
  @@ -317,6 +318,10 @@
       </jar>
       <jar jarfile="${build.lib}/${jaxrpc}.jar" basedir="${build.dest}" >
         <include name="javax/**"/>
  +      <exclude name="javax/xml/soap/**"/>
  +    </jar>
  +    <jar jarfile="${build.lib}/${saaj}.jar" basedir="${build.dest}" >
  +      <include name="javax/xml/soap/**"/>
       </jar>
       <copy file="${wsdl4j.jar}" toDir="${build.lib}"/>
       <copy file="${commons-logging.jar}" toDir="${build.lib}"/>
  @@ -344,6 +349,7 @@
         <classpath>
           <pathelement location="${build.lib}/${name}.jar"/>
           <pathelement location="${build.lib}/${jaxrpc}.jar"/>
  +        <pathelement location="${build.lib}/${saaj}.jar"/>
           <path refid="classpath"/>
         </classpath>
         <include name="test/wsdl/*.java" />
  @@ -399,6 +405,7 @@
         <classpath>
           <pathelement location="${build.lib}/${name}.jar"/>
           <pathelement location="${build.lib}/${jaxrpc}.jar"/>
  +        <pathelement location="${build.lib}/${saaj}.jar"/>
           <path refid="classpath"/>
         </classpath>
         <include name="samples/**/*.java" />
  @@ -432,6 +439,7 @@
         <classpath>
           <pathelement location="${build.lib}/${name}.jar"/>
           <pathelement location="${build.lib}/${jaxrpc}.jar"/>
  +        <pathelement location="${build.lib}/${saaj}.jar"/>
           <path refid="classpath"/>
         </classpath>
         <include name="test/**/*.java" />
  
  
  


Reply via email to