From: Benjamin R. <ran...@us...> - 2007-07-29 17:24:57
|
Update of /cvsroot/jrobin/maven In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv27403 Modified Files: pom.xml Log Message: 1.5.5 released Index: pom.xml =================================================================== RCS file: /cvsroot/jrobin/maven/pom.xml,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** pom.xml 29 Jul 2007 04:19:30 -0000 1.5 --- pom.xml 29 Jul 2007 17:24:53 -0000 1.6 *************** *** 1,12 **** ! <?xml version="1.0" encoding="UTF-8"?> ! <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> ! <groupId>org.jrobin</groupId> ! <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> --- 1,12 ---- ! <?xml version="1.0" encoding="UTF-8"?> ! <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> ! <groupId>org.jrobin</groupId> ! <artifactId>jrobin</artifactId> ! <name>jrobin</name> ! <version>1.5.5</version> ! <packaging>jar</packaging> ! <url>http://www.jrobin.org</url> ! <build> <sourceDirectory>src</sourceDirectory> <resources> *************** *** 19,36 **** <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> ! <dependency> ! <groupId>junit</groupId> ! <artifactId>junit</artifactId> ! <version>3.8.1</version> ! <scope>test</scope> ! </dependency> </dependencies> <distributionManagement> --- 19,65 ---- <artifactId>maven-deploy-plugin</artifactId> <configuration> ! <repositoryId>opennms-repo</repositoryId> ! <!-- <repositoryId>opennms-snapshot-repo</repositoryId> --> <file>jrobin.jar</file> </configuration> </plugin> ! <plugin> ! <groupId>org.apache.maven.plugins</groupId> ! <artifactId>maven-javadoc-plugin</artifactId> ! <executions> ! <execution> ! <goals> ! <goal>jar</goal> ! </goals> ! </execution> ! </executions> ! </plugin> ! <plugin> ! <artifactId>maven-source-plugin</artifactId> ! <executions> ! <execution> ! <goals> ! <goal>jar</goal> ! </goals> ! </execution> ! </executions> ! </plugin> ! </plugins> ! </build> ! <reporting> ! <plugins> ! <plugin> ! <groupId>org.apache.maven.plugins</groupId> ! <artifactId>maven-javadoc-plugin</artifactId> ! </plugin> ! </plugins> ! </reporting> ! <dependencies> ! <dependency> ! <groupId>junit</groupId> ! <artifactId>junit</artifactId> ! <version>3.8.1</version> ! <scope>test</scope> ! </dependency> </dependencies> <distributionManagement> *************** *** 48,51 **** </snapshotRepository> </distributionManagement> ! </project> ! --- 77,79 ---- </snapshotRepository> </distributionManagement> ! </project> |