You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@avalon.apache.org by je...@apache.org on 2002/03/29 08:34:14 UTC

cvs commit: jakarta-avalon-excalibur/all/src/test/org/apache/avalon/excalibur/collections/test BinaryHeapTestCase.java BucketMapTestCase.java VariableSizeBufferTestCase.java

jefft       02/03/28 23:34:14

  Modified:    .        build.xml gump.xml
               all      ant.properties.sample build.xml
  Removed:     all/src/java/org/apache/avalon/excalibur/collections
                        ArrayEnumeration.java ArrayStack.java
                        BinaryHeap.java BucketMap.java Buffer.java
                        BufferOverflowException.java
                        BufferUnderflowException.java CircularBuffer.java
                        FixedSizeBuffer.java IteratorEnumeration.java
                        ListUtils.java PriorityQueue.java
                        SynchronizedPriorityQueue.java
                        VariableSizeBuffer.java package.html
               all/src/test ListTest.java
               all/src/test/org/apache/avalon/excalibur/collections/test
                        BinaryHeapTestCase.java BucketMapTestCase.java
                        VariableSizeBufferTestCase.java
  Log:
  Split the o.a.a.excalibur.collections package into a separate component, which
  now lives in the collections/ directory off the root.
  
  Revision  Changes    Path
  1.126     +1 -0      jakarta-avalon-excalibur/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-avalon-excalibur/build.xml,v
  retrieving revision 1.125
  retrieving revision 1.126
  diff -u -r1.125 -r1.126
  --- build.xml	27 Mar 2002 12:26:55 -0000	1.125
  +++ build.xml	29 Mar 2002 07:34:14 -0000	1.126
  @@ -17,6 +17,7 @@
       <!-- Build default targets of all subprojects. -->
       <target name="build-subprojects-dist">
   
  +        <ant dir="collections"/>
           <ant dir="instrument"/>
           <ant dir="all"/>                <!-- depends on instrument -->
           <ant dir="instrument-manager"/> <!-- depends on instrument, all -->
  
  
  
  1.20      +23 -0     jakarta-avalon-excalibur/gump.xml
  
  Index: gump.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-avalon-excalibur/gump.xml,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- gump.xml	27 Mar 2002 22:34:11 -0000	1.19
  +++ gump.xml	29 Mar 2002 07:34:14 -0000	1.20
  @@ -211,6 +211,29 @@
               to="avalon-dev@jakarta.apache.org"/>
       </project>
   
  +    <project name="excalibur-collections">
  +        <package>org.apache.avalon.excalibur.collections</package>
  +
  +        <ant basedir="collections">
  +            <depend property="junit.jar" project="junit"/>
  +            <property name="version" value="@@DATE@@"/>
  +            <property name="junit.failonerror" value="true"/>
  +            <property name="do.checkstyle" value="true"/>
  +        </ant>
  +
  +        <depend project="jakarta-ant"/>
  +        <depend project="xml-xerces"/>
  +        <depend project="xml-xalan2"/>
  +        <depend project="checkstyle"/>
  +        <work nested="collections/build/classes"/>
  +
  +        <home nested="collections"/>
  +        <jar name="build/lib/excalibur-collections-@@DATE@@.jar"/>
  +
  +        <nag from="Peter Donald &lt;peter@apache.org&gt;"
  +            to="avalon-dev@jakarta.apache.org"/>
  +    </project>
  +
       <project name="excalibur-naming">
           <package>org.apache.avalon.excalibur.naming</package>
   
  
  
  
  1.6       +4 -0      jakarta-avalon-excalibur/all/ant.properties.sample
  
  Index: ant.properties.sample
  ===================================================================
  RCS file: /home/cvs/jakarta-avalon-excalibur/all/ant.properties.sample,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- ant.properties.sample	28 Mar 2002 04:30:28 -0000	1.5
  +++ ant.properties.sample	29 Mar 2002 07:34:14 -0000	1.6
  @@ -46,3 +46,7 @@
   excalibur-instrument.home=../instrument/build/lib
   excalibur-instrument.jar=${excalibur-instrument.home}/excalibur-instrument-0.1.jar
   
  +# ----- Excalibur Collections -----
  +excalibur-collections.home=../collections/build/lib
  +excalibur-collections.jar=${excalibur-collections.home}/excalibur-collections-1.0.jar
  +
  
  
  
  1.118     +1 -0      jakarta-avalon-excalibur/all/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-avalon-excalibur/all/build.xml,v
  retrieving revision 1.117
  retrieving revision 1.118
  diff -u -r1.117 -r1.118
  --- build.xml	28 Mar 2002 04:30:28 -0000	1.117
  +++ build.xml	29 Mar 2002 07:34:14 -0000	1.118
  @@ -97,6 +97,7 @@
   
     <path id="project.class.path">
       <pathelement location="${framework.jar}"/>
  +    <pathelement location="${excalibur-collections.jar}"/>
       <pathelement location="${excalibur-instrument.jar}"/>
       <pathelement location="${j2ee.jar}"/>
       <pathelement location="${logkit.jar}"/>
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>