You are viewing a plain text version of this content. The canonical link for it is here.
Posted to slide-dev@jakarta.apache.org by re...@locus.apache.org on 2000/12/01 07:33:13 UTC

cvs commit: jakarta-slide build.xml status.html

remm        00/11/30 22:33:12

  Modified:    .        build.xml
  Removed:     .        status.html
  Log:
  - Conditional compile of the JUnit tests. Most likely all the future tests will be
    handled that way.
  - Removed the old status.html (there's a new fancier one).
  
  Revision  Changes    Path
  1.57      +5 -1      jakarta-slide/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-slide/build.xml,v
  retrieving revision 1.56
  retrieving revision 1.57
  diff -u -r1.56 -r1.57
  --- build.xml	2000/12/01 04:38:21	1.56
  +++ build.xml	2000/12/01 06:33:12	1.57
  @@ -89,6 +89,8 @@
       
       <available property="jmx.present" 
        classname="javax.management.MBeanServer" />
  +    <available property="junit.present" 
  +     classname="junit.framework.TestCase" />
       <available property="catalina.present" 
        classname="org.apache.catalina.Container" 
        classpath="${catalina.build}/classes" />
  @@ -236,7 +238,9 @@
       <javac srcdir="src/webdav/client/src" 
        destdir="${webdavclient.build}/classes"
        debug="off" deprecation="off" 
  -     excludes="**/CVS/**,**/package.html,**/tests/**" />
  +     excludes="**/CVS/**,**/package.html">
  +      <exclude name="**/tests/**" unless="junit.present" />
  +    </javac>
       <copy todir="${webdavclient.build}/bin">
         <fileset dir="src/webdav/client/bin">
           <include name="**/*.bat" />