You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by ba...@apache.org on 2002/12/07 21:33:33 UTC

cvs commit: jakarta-commons-sandbox/io build.properties.sample build.xml project.xml

bayard      2002/12/07 12:33:33

  Modified:    io       build.properties.sample build.xml project.xml
  Log:
  IO made dependent on the current 1.1 pre-release of Lang.
  This isn't exactly too stunning, but as IO is not going to release before then,
  it let's me Predicate' the FileFilters.
  
  Revision  Changes    Path
  1.2       +13 -5     jakarta-commons-sandbox/io/build.properties.sample
  
  Index: build.properties.sample
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/io/build.properties.sample,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- build.properties.sample	25 Jan 2002 19:06:14 -0000	1.1
  +++ build.properties.sample	7 Dec 2002 20:33:33 -0000	1.2
  @@ -1,6 +1,14 @@
  -# The directory containing your binary distribution of JUnit, 
  -# version 3.7 or later
  -junit.home = /usr/local/junit3.7
  +# build.properties.sample - Sample build.properties for "io"
   
  -# The pathname of the "junit.jar" JAR file
  -junit.jar = ${junit.home}/junit.jar
  \ No newline at end of file
  +# Base properties for expansion below
  +commons.home=../../jakarta-commons
  +junit.home=/usr/local/junit3.7
  +
  +# Derived home directories
  +lang.home=${commons.home}/lang
  +
  +# Jakarta JAR files
  +commons-lang.jar=${lang.home}/dist/commons-lang.jar
  +
  +# External packages
  +junit.jar=${junit.home}/junit.jar
  
  
  
  1.7       +4 -1      jakarta-commons-sandbox/io/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/io/build.xml,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- build.xml	13 Jul 2002 15:52:27 -0000	1.6
  +++ build.xml	7 Dec 2002 20:33:33 -0000	1.7
  @@ -78,6 +78,7 @@
     <!-- Construct compile classpath -->
     <path id="compile.classpath">
       <pathelement location="${build.home}/classes"/>
  +    <pathelement location="${commons-lang.jar}"/>
     </path>
   
   
  @@ -89,6 +90,7 @@
       <pathelement location="${build.home}/classes"/>
       <pathelement location="${build.home}/tests"/>
       <pathelement location="${junit.jar}"/>
  +    <pathelement location="${commons-lang.jar}"/>
     </path>
   
     <!-- Should all tests fail if one does? -->
  @@ -279,6 +281,7 @@
             <include name="**/Test*.class" />
             <exclude name="**/AllTest.class" />
             <exclude name="**/*$$*Test.class" />
  +          <exclude name="**/compress/*.class" />
           </fileset>
         </batchtest>
       </junit>  
  
  
  
  1.2       +7 -0      jakarta-commons-sandbox/io/project.xml
  
  Index: project.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/io/project.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- project.xml	12 Nov 2002 07:38:28 -0000	1.1
  +++ project.xml	7 Dec 2002 20:33:33 -0000	1.2
  @@ -96,6 +96,10 @@
         <version>3.7</version>
       </dependency>
       
  +    <dependency>
  +      <id>commons-lang</id>
  +      <version>1.1</version>
  +    </dependency>
     </dependencies>
   
   	
  @@ -113,6 +117,9 @@
         <includes>
           <include>**/Test*.java</include>
         </includes>
  +      <excludes>
  +        <exclude>**/compress/**/Test*.java</exclude>
  +      </excludes>
       </unitTest>
   
       
  
  
  

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