[Plexus-svn] SF.net SVN: plexus:[850] trunk/plexus/pom.xml
Status: Alpha
Brought to you by:
rconner
From: <rc...@us...> - 2010-02-02 01:19:00
|
Revision: 850 http://plexus.svn.sourceforge.net/plexus/?rev=850&view=rev Author: rconner Date: 2010-02-02 01:18:54 +0000 (Tue, 02 Feb 2010) Log Message: ----------- just checking in some minor pom tweaks change dependency version numbers to ranges add description, license info Modified Paths: -------------- trunk/plexus/pom.xml Modified: trunk/plexus/pom.xml =================================================================== --- trunk/plexus/pom.xml 2010-01-24 21:15:32 UTC (rev 849) +++ trunk/plexus/pom.xml 2010-02-02 01:18:54 UTC (rev 850) @@ -9,17 +9,41 @@ <version>0.14-SNAPSHOT</version> <name>Plexus Graph Library</name> + <inceptionYear>2003</inceptionYear> - <url>http://sourceforge.net/projects/plexus/</url> + <url>http://plexus.sourceforge.net/</url> + <description> + The Plexus Graph Library is a Java library with specifications and + implementations for generic graph data structures. Like the Java Collections + Framework, vertices and edges are containers for arbitrary user-defined objects. + </description> + <licenses> + <license> + <name>Common Public License Version 1.0</name> + <url>http://www.opensource.org/licenses/cpl1.0.txt</url> + <distribution>repo</distribution> + </license> + </licenses> + + <!-- + TODO: + + scm + issueManagement + mailingLists + repositories + distributionManagement + + --> + <dependencies> - <!-- This is the latest, but at least back to 1.2.8 should work fine. --> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> - <version>1.2.15</version> + <version>[1.2.8,2.0)</version> <exclusions> <exclusion> <groupId>javax.mail</groupId> @@ -40,17 +64,16 @@ </exclusions> </dependency> - <!-- This is the latest, but at least back to 2.1.1 should work fine. --> <dependency> <groupId>commons-collections</groupId> <artifactId>commons-collections</artifactId> - <version>3.2.1</version> + <version>[2.1.1,]</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> - <version>3.8.2</version> + <version>[3.8.1,4.0)</version> <scope>test</scope> </dependency> @@ -112,6 +135,9 @@ <id>rconner</id> <name>Ray Conner</name> <email>rc...@us...</email> + <roles> + <role>Developer</role> + </roles> </developer> </developers> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |