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/04/20 13:58:16 UTC

cvs commit: jakarta-avalon-excalibur/testcase build.xml

jefft       02/04/20 04:58:16

  Modified:    testcase build.xml
  Log:
  Testcase requires JUnit to compile, not just for unit tests.
  
  Revision  Changes    Path
  1.13      +2 -2      jakarta-avalon-excalibur/testcase/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-avalon-excalibur/testcase/build.xml,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- build.xml	16 Apr 2002 12:00:42 -0000	1.12
  +++ build.xml	20 Apr 2002 11:58:16 -0000	1.13
  @@ -13,6 +13,7 @@
       <path id="project.class.path">
           <pathelement path="${java.class.path}"/>
           <pathelement location="${build.classes}"/>
  +        <pathelement location="${junit.jar}"/>
           <pathelement location="${avalon-logkit.jar}"/>
           <pathelement location="${avalon-framework.jar}"/>
           <pathelement location="${excalibur-logger.jar}"/>
  @@ -29,7 +30,6 @@
   
       <path id="test.class.path">
           <pathelement location="${build.testclasses}"/>
  -        <pathelement location="${junit.jar}"/>
           <path refid="project.class.path"/>
       </path>
       <property name="cp" refid="test.class.path"/>
  @@ -39,6 +39,7 @@
   
       <target name="dependencies" description="Check dependencies" unless="skip.dependencies">
           <ant antfile="${depchecker.prefix}/depchecker.xml" target="checkCommon"/>
  +        <ant antfile="${depchecker.prefix}/depchecker.xml" target="checkJUnit"/>
           <ant antfile="${depchecker.prefix}/depchecker.xml" target="checkLogkit"/>
           <ant antfile="${depchecker.prefix}/depchecker.xml" target="checkFramework"/>
           <ant antfile="${depchecker.prefix}/depchecker.xml" target="checkLogger"/>
  @@ -49,7 +50,6 @@
           description="Check unit test dependencies" unless="skip.dependencies">
           <!-- Need the jar to prevent recursive deps. -->
   
  -        <ant antfile="${depchecker.prefix}/depchecker.xml" target="checkJUnit"/>
       </target>
   
   
  
  
  

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