You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by sc...@apache.org on 2003/09/20 12:18:56 UTC

cvs commit: jakarta-commons/lang build.xml STATUS.html

scolebourne    2003/09/20 03:18:56

  Modified:    lang     build.xml STATUS.html
  Removed:     lang/src/test/org/apache/commons/lang/reflect/priv
                        PackageBean.java PrivateIndirect.java
                        PrivateBeanFactory.java PrivateBean.java
                        PublicSubBean.java PrivateBeanSubclass.java
                        PrivateDirect.java
               lang/src/test/org/apache/commons/lang/reflect
                        ReflectionUtilsTestCase.java AbstractChild.java
                        ReflectTestSuite.java BetaBean.java TestBean.java
                        PrimitiveBean.java AlphaBean.java
                        MethodUtilsTestCase.java ScopeBean.java
                        AbstractParent.java Child.java
               lang/src/java/org/apache/commons/lang/reflect
                        ConstructorUtils.java FieldUtils.java
                        ReflectionUtils.java MethodUtils.java package.html
                        ReflectionException.java
  Log:
  Remove reflect code from [lang] to separate project [reflect]
  
  Revision  Changes    Path
  1.23      +1 -8      jakarta-commons/lang/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/lang/build.xml,v
  retrieving revision 1.22
  retrieving revision 1.23
  diff -u -r1.22 -r1.23
  --- build.xml	23 Aug 2003 05:27:30 -0000	1.22
  +++ build.xml	20 Sep 2003 10:18:56 -0000	1.23
  @@ -164,13 +164,6 @@
               <classpath refid="test.classpath"/>
           </java>
       </target>
  -    <target name="test.reflect" depends="compile.tests">
  -        <echo message="Running reflect package tests ..."/>
  -        <java classname="${test.runner}" fork="yes" failonerror="${test.failonerror}">
  -            <arg value="org.apache.commons.lang.reflect.ReflectTestSuite"/>
  -            <classpath refid="test.classpath"/>
  -        </java>
  -    </target>
       <target name="test.time" depends="compile.tests">
           <echo message="Running time package tests ..."/>
           <java classname="${test.runner}" fork="yes" failonerror="${test.failonerror}">
  
  
  
  1.50      +3 -3      jakarta-commons/lang/STATUS.html
  
  Index: STATUS.html
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/lang/STATUS.html,v
  retrieving revision 1.49
  retrieving revision 1.50
  diff -u -r1.49 -r1.50
  --- STATUS.html	2 Sep 2003 02:37:21 -0000	1.49
  +++ STATUS.html	20 Sep 2003 10:18:56 -0000	1.50
  @@ -127,7 +127,7 @@
   <p>Want to help?  Here's some "to do" items the team has identified as possibly being in scope for Lang.
   Note that all are still under discussion, so please mail the list before actioning.</p>
   <ul>
  -<li>Reflection utilities - work underway in reflect package. Move out of [lang]?</li>
  +<li>Rename NumberUtils stringToInt() et al to toInt().</li>
   <li>DateRange/Duration class.</li>
   <li>DurationFormatUtils to be completed and made public.</li>
   <li>CloneUtils - utility class to enable cloning via various different mechanisms.</li>
  @@ -135,7 +135,7 @@
   <li>CharUtils - Utilities to work on a char[] in the same way as a String.</li>
   <li>AStringBuffer - A StringBuffer implementation with additional methods from StringUtils.</li>
   <li>O(n) - Document all algorithm-implementing methods with the order. Possibly with an O(n) on the end of each parameterm or with an @order tag.</li>
  -<li>Money and Currency.</li>
  +<li>Money and Currency. Maybe separate project.</li>
   <li>Code examples - Document as many static methods as possible with example usage.</li>
   <li>Faster StringTokeniser - Is Java's slow?</li>
   <li>Mutable Number classes - like Integer/Double but mutable.</li>