o adding project.xml and maven.xml. these don't work yet as the <build/>

element will have to be change.

  this is an example of the differences in testing patterns. The
  FooBarTestCase.java used in beanutils provides a nice way to grab
  on to the tests while leaving test classes out of the picture while
  not having to explicitly write a TestAll running. So with the
  introduction of a nice pattern that is used in Bean utils you don't
  need a runner and test classes will be ommitted and you can just add
  test cases and go, no need to modify anything else.

PR:
Obtained from:
Submitted by:
Reviewed by:


git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@130749 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason van Zyl 2002-07-23 16:41:11 +00:00
parent 693659db99
commit 62a4ae05ab
2 changed files with 72 additions and 0 deletions

4
maven.xml Normal file
View File

@ -0,0 +1,4 @@
<project default="java:jar"
xmlns:j="jelly:core">
</project>

68
project.xml Normal file
View File

@ -0,0 +1,68 @@
<?xml version="1.0" encoding="UTF-8"?>
<project>
<extend>../project.xml</extend>
<name>commons-collections</name>
<id>commons-collections</id>
<currentVersion>1.0-dev</currentVersion>
<inceptionYear>2002</inceptionYear>
<gumpRepositoryId>jakarta</gumpRepositoryId>
<shortDescription>Commons Collections</shortDescription>
<description>
Commons Collections
</description>
<developers>
<developer>
<name>Morgan Delagrange</name>
<id></id>
<email></email>
<organization></organization>
</developer>
<developer>
<name>Geir Magnusson</name>
<id></id>
<email></email>
<organization></organization>
</developer>
<developer>
<name>Craig McClanahan</name>
<id></id>
<email></email>
<organization></organization>
</developer>
<developer>
<name>Rodney Waldoff</name>
<id>rwaldof</id>
<email></email>
<organization></organization>
</developer>
<developer>
<name>David Weinrich</name>
<id></id>
<email></email>
<organization></organization>
</developer>
</developers>
<dependencies>
<dependency>
<id>junit</id>
<version>3.7</version>
</dependency>
</dependencies>
<build>
<unitTest>
<excludes>
<exclude>**/TestAll.java</exclude>
</excludes>
</unitTest>
</build>
</project>