You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by co...@apache.org on 2002/06/14 03:30:03 UTC

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

conor       2002/06/13 18:30:03

  Modified:    jrcs     build.xml
  Log:
   * added support for copying across test RCS files
     into the *.tests.jar (this needs to be cleaned up).
   * used correct (?) variable for javacc home
  
  Submitted By:	Matt Quail <ma...@cortexebusiness.com.au>
  
  Revision  Changes    Path
  1.2       +14 -1     jakarta-commons-sandbox/jrcs/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/jrcs/build.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -w -u -r1.1 -r1.2
  --- build.xml	28 May 2002 16:45:42 -0000	1.1
  +++ build.xml	14 Jun 2002 01:30:03 -0000	1.2
  @@ -49,11 +49,24 @@
           
       <javacc
         target="${maven.parserGrammar.jrcs}"
  -      javacchome="${maven.javacc.home}"
  +      javacchome="${javacc.home}"
       />
                                                 
     </target>
   
  +  <!-- ================================================================== -->
  +  <!-- C A L L B A C K S                                                  -->
  +  <!-- ================================================================== -->
  +  
  +  <!-- copy files required by unittests, so that they can be found on -->
  +  <!-- the classpath at runtime during testing -->
  +  <target
  +    name="copy-test-files">
  +    <copy todir="target/test-classes">
  +      <fileset dir="src/test" includes="**/*.testfile"/>
  +    </copy>
  +  </target>
  +  
     <!-- maven:start -->
     
     <!-- ================================================================== -->
  
  
  

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