From: Benjamin R. <ran...@us...> - 2007-07-29 04:19:35
|
Update of /cvsroot/jrobin/maven In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv13824 Modified Files: pom.xml Log Message: Incorporate Will Fraley's jrobin graph cleanups Index: pom.xml =================================================================== RCS file: /cvsroot/jrobin/maven/pom.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** pom.xml 29 Jul 2007 01:41:46 -0000 1.4 --- pom.xml 29 Jul 2007 04:19:30 -0000 1.5 *************** *** 5,12 **** <artifactId>jrobin</artifactId> <name>jrobin</name> ! <version>1.5.5-SNAPSHOT</version> <url>http://www.jrobin.org</url> <build> ! <sourceDirectory>src</sourceDirectory> </build> <dependencies> --- 5,28 ---- <artifactId>jrobin</artifactId> <name>jrobin</name> ! <version>1.5.5-SNAPSHOT</version> ! <packaging>jar</packaging> <url>http://www.jrobin.org</url> <build> ! <sourceDirectory>src</sourceDirectory> ! <resources> ! <resource> ! <directory>fonts</directory> ! </resource> ! </resources> ! <plugins> ! <plugin> ! <artifactId>maven-deploy-plugin</artifactId> ! <configuration> ! <repositoryId>opennms-snapshot-repo</repositoryId> ! <!-- <url>scpexe://repo.opennms.org/var/www/sites/opennms.org/site/repo/maven2</url> --> ! <file>jrobin.jar</file> ! </configuration> ! </plugin> ! </plugins> </build> <dependencies> *************** *** 17,21 **** <scope>test</scope> </dependency> ! </dependencies> </project> --- 33,51 ---- <scope>test</scope> </dependency> ! </dependencies> ! <distributionManagement> ! <!-- use the following if you're not using a snapshot version. --> ! <repository> ! <id>opennms-repo</id> ! <name>OpenNMS Release Repository</name> ! <url>scpexe://repo.opennms.org/var/www/sites/opennms.org/site/repo/maven2</url> ! </repository> ! <!-- use the following if you ARE using a snapshot version. --> ! <snapshotRepository> ! <id>opennms-snapshot-repo</id> ! <name>OpenNMS Snapshot Repository</name> ! <url>scpexe://repo.opennms.org/var/www/sites/opennms.org/site/repo/snapshots</url> ! </snapshotRepository> ! </distributionManagement> </project> |