You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by dl...@apache.org on 2002/05/03 18:52:12 UTC

cvs commit: jakarta-commons-sandbox/resources build.xml

dlr         02/05/03 09:52:12

  Modified:    resources build.xml
  Log:
  Moved <taskdef> of <runservertests> down just before its usage so that
  compilation can occur without the check for test aparatus predicating
  it.
  
  Revision  Changes    Path
  1.10      +5 -5      jakarta-commons-sandbox/resources/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/resources/build.xml,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -u -r1.9 -r1.10
  --- build.xml	23 Oct 2001 21:01:04 -0000	1.9
  +++ build.xml	3 May 2002 16:52:12 -0000	1.10
  @@ -3,7 +3,7 @@
   
   <!--
           "Resource Facilities" component of the Jakarta Commons Subproject
  -        $Id: build.xml,v 1.9 2001/10/23 21:01:04 mschachter Exp $
  +        $Id: build.xml,v 1.10 2002/05/03 16:52:12 dlr Exp $
   -->
   
   
  @@ -181,10 +181,6 @@
       <filter  token="name"                  value="${component.name}"/>
       <filter  token="package"               value="${component.package}"/>
       <filter  token="version"               value="${component.version}"/>
  -
  -    <taskdef name="runservertests" classname="org.apache.cactus.ant.RunServerTestsTask">
  -        <classpath refid="test.classpath" />
  -    </taskdef>
     </target>
   
   
  @@ -359,6 +355,10 @@
     <target name="test"  depends="build.tests"
             description="Run all unit test cases" >
   
  +    <taskdef name="runservertests"
  +             classname="org.apache.cactus.ant.RunServerTestsTask">
  +        <classpath refid="test.classpath" />
  +    </taskdef>
       <runservertests testURL="http://localhost:${server.port}/test-webapp-resource"
                       startTarget="${server.start.target}"
                       stopTarget="${server.stop.target}"
  
  
  

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