Update of /cvsroot/jrobin/maven
In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv1409
Modified Files:
pom.xml
Log Message:
add deps
Index: pom.xml
===================================================================
RCS file: /cvsroot/jrobin/maven/pom.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** pom.xml 29 Jul 2007 00:49:57 -0000 1.2
--- pom.xml 29 Jul 2007 00:59:18 -0000 1.3
***************
*** 1,21 ****
! <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>
! <packaging>jar</packaging>
! <version>1.5.5-SNAPSHOT</version>
! <name>jrobin</name>
! <url>http://www.jrobin.org</url>
! <build>
! <sourceDirectory>src</sourceDirectory>
! </build>
! <dependencies>
! <dependency>
! <groupId>junit</groupId>
! <artifactId>junit</artifactId>
! <version>3.8.1</version>
! <scope>test</scope>
! </dependency>
! </dependencies>
! </project>
--- 1,31 ----
! <?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>
! <url>http://www.jrobin.org</url>
! <build>
! <sourceDirectory>src</sourceDirectory>
! </build>
! <dependencies>
! <dependency>
! <groupId>junit</groupId>
! <artifactId>junit</artifactId>
! <version>3.8.1</version>
! <scope>test</scope>
! </dependency>
! <dependency>
! <groupId>org.apache.xmlrpc</groupId>
! <artifactId>xmlrpc-client</artifactId>
! <version>3.0</version>
! </dependency>
! <dependency>
! <groupId>westhawk</groupId>
! <artifactId>snmp</artifactId>
! <version>4_13</version>
! </dependency>
! </dependencies>
! </project>
!
|