Thread: [Plexus-svn] SF.net SVN: plexus:[847] trunk/plexus/pom.xml
Status: Alpha
Brought to you by:
rconner
From: <rc...@us...> - 2010-01-24 19:41:15
|
Revision: 847 http://plexus.svn.sourceforge.net/plexus/?rev=847&view=rev Author: rconner Date: 2010-01-24 19:41:08 +0000 (Sun, 24 Jan 2010) Log Message: ----------- Minor change to compiler config, really just testing the svn commit hook and mailing list. Modified Paths: -------------- trunk/plexus/pom.xml Modified: trunk/plexus/pom.xml =================================================================== --- trunk/plexus/pom.xml 2010-01-22 23:48:48 UTC (rev 846) +++ trunk/plexus/pom.xml 2010-01-24 19:41:08 UTC (rev 847) @@ -67,6 +67,8 @@ <configuration> <source>1.5</source> <target>1.5</target> + <showDeprecation>true</showDeprecation> + <showWarnings>true</showWarnings> </configuration> </plugin> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
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. |
From: <rc...@us...> - 2010-09-04 20:22:31
|
Revision: 853 http://plexus.svn.sourceforge.net/plexus/?rev=853&view=rev Author: rconner Date: 2010-09-04 20:22:25 +0000 (Sat, 04 Sep 2010) Log Message: ----------- updating pom, working on getting plexus releasable Modified Paths: -------------- trunk/plexus/pom.xml Modified: trunk/plexus/pom.xml =================================================================== --- trunk/plexus/pom.xml 2010-09-04 20:19:06 UTC (rev 852) +++ trunk/plexus/pom.xml 2010-09-04 20:22:25 UTC (rev 853) @@ -1,4 +1,5 @@ -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" +<project xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> @@ -10,7 +11,6 @@ <name>Plexus Graph Library</name> <inceptionYear>2003</inceptionYear> - <url>http://plexus.sourceforge.net/</url> <description> @@ -27,53 +27,29 @@ </license> </licenses> - <!-- - TODO: + <properties> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + </properties> - scm - issueManagement - mailingLists - repositories - distributionManagement - --> - <dependencies> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> - <version>[1.2.8,2.0)</version> - <exclusions> - <exclusion> - <groupId>javax.mail</groupId> - <artifactId>mail</artifactId> - </exclusion> - <exclusion> - <groupId>javax.jms</groupId> - <artifactId>jms</artifactId> - </exclusion> - <exclusion> - <groupId>com.sun.jdmk</groupId> - <artifactId>jmxtools</artifactId> - </exclusion> - <exclusion> - <groupId>com.sun.jmx</groupId> - <artifactId>jmxri</artifactId> - </exclusion> - </exclusions> + <version>1.2.16</version> </dependency> <dependency> <groupId>commons-collections</groupId> <artifactId>commons-collections</artifactId> - <version>[2.1.1,]</version> + <version>3.2.1</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> - <version>[3.8.1,4.0)</version> + <version>3.8.2</version> <scope>test</scope> </dependency> @@ -87,6 +63,7 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> + <version>2.3.1</version> <configuration> <source>1.5</source> <target>1.5</target> @@ -98,6 +75,7 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> + <version>2.3.1</version> <configuration> <archive> <manifest> @@ -108,6 +86,21 @@ </configuration> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-release-plugin</artifactId> + <version>2.0</version> + <configuration> + <tagBase>https://plexus.svn.sourceforge.net/svnroot/plexus/tags/plexus</tagBase> + </configuration> + </plugin> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-site-plugin</artifactId> + <version>2.1.1</version> + </plugin> + </plugins> </build> @@ -118,6 +111,7 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-changes-plugin</artifactId> + <version>2.3</version> <reportSets> <reportSet> <reports> @@ -130,6 +124,26 @@ </reporting> + <scm> + <connection>scm:svn:http://plexus.svn.sourceforge.net/svnroot/plexus/trunk/plexus</connection> + <developerConnection>scm:svn:https://plexus.svn.sourceforge.net/svnroot/plexus/trunk/plexus</developerConnection> + <url>http://plexus.svn.sourceforge.net/viewvc/plexus/trunk/plexus</url> + </scm> + + + <issueManagement> + <system>sourceforge</system> + <url>http://sourceforge.net/tracker/?group_id=88021</url> + </issueManagement> + + + <!-- + TODO: + distributionManagement + + --> + + <developers> <developer> <id>rconner</id> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |