geirm       01/04/16 06:26:07

  Modified:    beanutils build.xml
  Log:
  Moved location of properties file to reflect lack of build directory
  
  Added BeanUtils test case.
  
  Revision  Changes    Path
  1.7       +15 -3     jakarta-commons/beanutils/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/beanutils/build.xml,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- build.xml 2001/04/14 18:45:32     1.6
  +++ build.xml 2001/04/16 13:26:05     1.7
  @@ -3,14 +3,14 @@
   
   <!--
           "Bean Utilities" component of the Jakarta Commons Subproject
  -        $Id: build.xml,v 1.6 2001/04/14 18:45:32 craigmcc Exp $
  +        $Id: build.xml,v 1.7 2001/04/16 13:26:05 geirm Exp $
   -->
   
   
   <!-- ========== Initialize Properties ===================================== -->
   
   
  -  <property file="build/build.properties"/>          <!-- Component local   -->
  +  <property file="build.properties"/>                <!-- Component local   -->
     <property file="../build.properties"/>             <!-- Commons local     -->
     <property file="${user.home}/.build.properties"/>  <!-- User local        -->
   
  @@ -198,7 +198,8 @@
   
   
     <target name="test"  depends="compile.tests,
  -                                test.property
  +                                test.property,
  +                                test.bean
                                  "
      description="Run all unit test cases">
     </target>
  @@ -212,6 +213,17 @@
         <classpath refid="test.classpath"/>
       </java>
     </target>
  +
  + <target name="test.bean">
  +    <echo message="Running BeanUtils tests ..."/>
  +    <java classname="${test.runner}" fork="yes"
  +        failonerror="${test.failonerror}">
  +      <arg value="org.apache.commons.beanutils.BeanUtilsTestCase"/>
  +      <classpath refid="test.classpath"/>
  +    </java>
  +  </target>
  +
  +
   
   
   </project>
  
  
  

Reply via email to