Fix and simplify project.xml prior to 3.2

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@333017 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stephen Colebourne 2005-11-13 15:07:51 +00:00
parent 19df64e80f
commit 567778ed77

View File

@ -18,15 +18,15 @@
<pomVersion>3</pomVersion> <pomVersion>3</pomVersion>
<groupId>commons-collections</groupId> <groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId> <artifactId>commons-collections</artifactId>
<currentVersion>3.2-dev</currentVersion> <currentVersion>3.2-SNAPSHOT</currentVersion>
<inceptionYear>2001</inceptionYear> <inceptionYear>2001</inceptionYear>
<name>Collections</name> <name>Collections</name>
<shortDescription>Commons Collections</shortDescription> <shortDescription>Commons Collections</shortDescription>
<description>Types that extend and augment the Java Collections Framework.</description> <description>Types that extend and augment the Java Collections Framework.</description>
<logo>/images/logo.png</logo> <logo>/images/logo.png</logo>
<url>http://jakarta.apache.org/commons/${pom.artifactId.substring(8)}/</url> <url>http://jakarta.apache.org/commons/collections/</url>
<package>org.apache.commons.${pom.artifactId.substring(8)}</package> <package>org.apache.commons.collections</package>
<organization> <organization>
<name>The Apache Software Foundation</name> <name>The Apache Software Foundation</name>
@ -44,13 +44,13 @@
<gumpRepositoryId>jakarta</gumpRepositoryId> <gumpRepositoryId>jakarta</gumpRepositoryId>
<issueTrackingUrl>http://issues.apache.org/bugzilla/</issueTrackingUrl> <issueTrackingUrl>http://issues.apache.org/bugzilla/</issueTrackingUrl>
<siteAddress>jakarta.apache.org</siteAddress> <siteAddress>people.apache.org</siteAddress>
<siteDirectory>/www/jakarta.apache.org/commons/${pom.artifactId.substring(8)}/</siteDirectory> <siteDirectory>/www/jakarta.apache.org/commons/collections/</siteDirectory>
<distributionDirectory>/www/jakarta.apache.org/builds/jakarta-commons/${pom.artifactId.substring(8)}/</distributionDirectory> <distributionDirectory>/www/jakarta.apache.org/builds/jakarta-commons/collections/</distributionDirectory>
<repository> <repository>
<connection>scm:svn:http://svn.apache.org/repos/asf/jakarta/commons/proper/${pom.artifactId.substring(8)}/trunk</connection> <connection>scm:svn:http://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk</connection>
<url>http://svn.apache.org/repos/asf/jakarta/commons/proper/${pom.artifactId.substring(8)}/trunk</url> <url>http://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk</url>
</repository> </repository>
<mailingLists> <mailingLists>
@ -129,7 +129,6 @@
<email></email> <email></email>
<organization></organization> <organization></organization>
</developer> </developer>
</developers> </developers>
<contributors> <contributors>
@ -375,35 +374,44 @@
</dependencies> </dependencies>
<build> <build>
<nagEmailAddress>commons-dev@jakarta.apache.org</nagEmailAddress> <nagEmailAddress>commons-dev@jakarta.apache.org</nagEmailAddress>
<sourceDirectory>src/java</sourceDirectory> <sourceDirectory>src/java</sourceDirectory>
<unitTestSourceDirectory>src/test</unitTestSourceDirectory> <unitTestSourceDirectory>src/test</unitTestSourceDirectory>
<integrationUnitTestSourceDirectory/> <integrationUnitTestSourceDirectory/>
<aspectSourceDirectory/> <aspectSourceDirectory/>
<unitTest>
<!-- Unit test classes --> <includes>
<unitTest> <include>org/apache/commons/collections/TestAllPackages.java</include>
<includes> </includes>
<include>org/apache/commons/collections/TestAllPackages.java</include> </unitTest>
</includes> <resources>
</unitTest> <resource>
</build> <directory>.</directory>
<targetPath>META-INF</targetPath>
<includes>
<include>NOTICE.txt</include>
</includes>
</resource>
</resources>
</build>
<reports> <reports>
<report>maven-changelog-plugin</report> <report>maven-changelog-plugin</report>
<report>maven-changes-plugin</report> <report>maven-changes-plugin</report>
<!--report>maven-checkstyle-plugin</report--> <!--report>maven-checkstyle-plugin</report-->
<!--report>maven-clover-plugin</report--> <!--report>maven-jcoverage-plugin</report-->
<report>maven-developer-activity-plugin</report> <!--report>maven-clover-plugin</report-->
<report>maven-file-activity-plugin</report> <report>maven-developer-activity-plugin</report>
<report>maven-javadoc-plugin</report> <report>maven-file-activity-plugin</report>
<!--report>maven-jellydoc-plugin</report--> <report>maven-javadoc-plugin</report>
<report>maven-junit-report-plugin</report> <report>maven-jdepend-plugin</report>
<report>maven-jxr-plugin</report> <report>maven-junit-report-plugin</report>
<report>maven-license-plugin</report> <report>maven-jxr-plugin</report>
<!--report>maven-linkcheck-plugin</report--> <report>maven-license-plugin</report>
<!--report>maven-statcvs-plugin</report--> <report>maven-jdiff-plugin</report>
<!--report>maven-tasklist-plugin</report--> <!--report>maven-linkcheck-plugin</report-->
<!--report>maven-statcvs-plugin</report-->
<!--report>maven-tasklist-plugin</report-->
</reports> </reports>
</project> </project>