jvanzyl 2002/07/23 09:41:11
Added: collections maven.xml project.xml
Log:
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.
Revision Changes Path
1.1 jakarta-commons/collections/maven.xml
Index: maven.xml
===================================================================
<project default="java:jar"
xmlns:j="jelly:core">
</project>
1.1 jakarta-commons/collections/project.xml
Index: project.xml
===================================================================
<?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>
--
To unsubscribe, e-mail: <mailto:commons-dev-unsubscribe@jakarta.apache.org>
For additional commands, e-mail: <mailto:commons-dev-help@jakarta.apache.org>
|