rdonkin     2004/11/04 14:59:02

  Modified:    logging  build.xml
               logging/src/conf MANIFEST.MF
  Log:
  Added new optional subcomponent consisting of non-core implementations. Initial 
contents MemoryLog, a log implementation intended for use when unit testing. Issue 
#27663. Contributed by Joerg Schaible.
  
  Revision  Changes    Path
  1.47      +16 -2     jakarta-commons/logging/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/logging/build.xml,v
  retrieving revision 1.46
  retrieving revision 1.47
  diff -u -r1.46 -r1.47
  --- build.xml 30 May 2004 10:32:25 -0000      1.46
  +++ build.xml 4 Nov 2004 22:59:02 -0000       1.47
  @@ -64,7 +64,7 @@
     <property name="component.title"         value="Logging Wrapper Library"/>
   
     <!-- The current version number of this component -->
  -  <property name="component.version"       value="1.0.4"/>
  +  <property name="component.version"       value="1.0.5-dev"/>
   
     <!-- The base directory for compilation targets -->
     <property name="build.home"              value="${basedir}/target"/>
  @@ -82,6 +82,11 @@
     <property name="test.home"               value="src/test"/>
   
   
  +  <!-- Optional build -->
  +  <property name="optional.home"               value="optional"/>
  +  <property name="optional.dist.home"           value="${optional.home}/dist"/>
  +
  +  
   <!-- ========== Compiler Defaults ========================================= -->
   
   
  @@ -427,6 +432,15 @@
     <target name="dist" depends="compile,javadoc"
      description="Create binary distribution">
       <mkdir      dir="${dist.home}"/>
  +    <ant antfile='build.xml' target='dist' dir='${optional.home}'/>
  +    <copy       todir="${dist.home}">
  +        <fileset dir='${optional.dist.home}'>
  +            <include name='*.jar'/>
  +        </fileset>
  +    </copy>
  +    <copy       todir="${dist.home}/docs-optional">
  +        <fileset dir='${optional.dist.home}/docs'/>
  +    </copy>
       <copy      file="LICENSE.txt"
                 todir="${dist.home}"/>
       <copy      file="NOTICE.txt"
  
  
  
  1.6       +1 -1      jakarta-commons/logging/src/conf/MANIFEST.MF
  
  Index: MANIFEST.MF
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/logging/src/conf/MANIFEST.MF,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- MANIFEST.MF       6 Mar 2004 22:20:54 -0000       1.5
  +++ MANIFEST.MF       4 Nov 2004 22:59:02 -0000       1.6
  @@ -2,4 +2,4 @@
   Specification-Vendor: Apache Software Foundation
   Specification-Version: 1.0
   Implementation-Vendor: Apache Software Foundation
  -Implementation-Version: 1.0.4
  +Implementation-Version: 1.0.5
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to