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 di...@apache.org on 2003/04/27 00:36:37 UTC

cvs commit: xml-axis/java/tools build.xml

dims        2003/04/26 15:36:37

  Modified:    java     build.xml
               java/tools build.xml
  Log:
  Fix for Bug 18740 - MANIFEST.MF within axis-ant.jar missing version info
  
  Notes:
  Added a Date and Time stamp for axis.jar and axis-ant.jar
  
  Revision  Changes    Path
  1.229     +2 -1      xml-axis/java/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/build.xml,v
  retrieving revision 1.228
  retrieving revision 1.229
  diff -u -r1.228 -r1.229
  --- build.xml	15 Mar 2003 15:46:54 -0000	1.228
  +++ build.xml	26 Apr 2003 22:36:36 -0000	1.229
  @@ -174,6 +174,7 @@
       <replace file="${build.dest}/org/apache/axis/i18n/resource.properties"
                token="#axisVersion#" value="${axis.version}"/>
   
  +    <tstamp/>
       <jar jarfile="${build.lib}/${name}.jar" basedir="${build.dest}" >
         <include name="org/**" />
         <include name="log4j.properties" unless="exclude.log4j.configuration"/>
  @@ -181,7 +182,7 @@
         <manifest>
           <section name="org/apache/axis">
             <attribute name="Implementation-Title" value="Apache Axis"/>
  -          <attribute name="Implementation-Version" value="${axis.version} ${TODAY}"/> 
  +          <attribute name="Implementation-Version" value="${axis.version} ${TSTAMP} ${TODAY}"/> 
             <attribute name="Implementation-Vendor" value="Apache Web Services"/>
           </section>
         </manifest>
  
  
  
  1.13      +8 -0      xml-axis/java/tools/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/tools/build.xml,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- build.xml	25 Oct 2002 06:24:36 -0000	1.12
  +++ build.xml	26 Apr 2003 22:36:37 -0000	1.13
  @@ -96,12 +96,20 @@
        <fileset dir="${tools.dir}/${componentName}/foreach" excludes="**/*.java"/>
     </copy>
   
  +  <tstamp/>
     <jar jarfile="${build.lib}/axis-ant.jar" >
       <fileset dir="${tools.build.dir}">
         <include name="${componentName}/**"/>
       </fileset>
       <fileset dir="${tools.dir}"
         includes="*-tasks.properties"/>
  +    <manifest>
  +      <section name="org/apache/axis/tools">
  +        <attribute name="Implementation-Title" value="Apache Axis"/>
  +        <attribute name="Implementation-Version" value="${axis.version} ${TSTAMP} ${TODAY}"/> 
  +        <attribute name="Implementation-Vendor" value="Apache Web Services"/>
  +      </section>
  +    </manifest>
     </jar>
   </target>