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 he...@apache.org on 2003/12/15 04:06:52 UTC

cvs commit: ws-axis/contrib/axismora build.xml

hemapani    2003/12/14 19:06:52

  Modified:    contrib/axismora build.xml
  Log:
  add a task to create a jar file to the build file
  
  Revision  Changes    Path
  1.2       +16 -3     ws-axis/contrib/axismora/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/ws-axis/contrib/axismora/build.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- build.xml	10 Oct 2003 01:55:18 -0000	1.1
  +++ build.xml	15 Dec 2003 03:06:52 -0000	1.2
  @@ -202,12 +202,25 @@
   			</javadoc>
       </target>
       
  -    
  +    <target name="jar" depends="compile">
  +   	<jar jarfile="${web-inf}/lib/axismora.jar" basedir="${web-inf}/classes" >
  +      <include name="AxisServlet.class"/>
  +      <include name="org/apache/**" />
  +      <include name="log4j.properties"/>
  +      <include name="simplelog.properties"/>
  +      <include name="${web-inf}/mora-server.wsdd"/>
  +      <manifest>
  +        <section name="org/apache/axis">
  +          <attribute name="Implementation-Title" value="Apache Axismora"/>
  +           <attribute name="Implementation-Vendor" value="Apache Web Services"/>
  +        </section>
  +      </manifest>
  +    </jar>
  +    </target>
       <!--
       TODO followings 
       1) task to run the tests when server is ready 
  -    2) task to create jar file 
  -    3) task to run all usage tests
  +    2) task to run all usage tests
       
       The work is straight foward from the axis build.xml yet I try to keep the ant file 
       for time been.