Author: jochen Date: Thu Feb 23 10:38:05 2006 New Revision: 380193 URL: http://svn.apache.org/viewcvs?rev=380193&view=rev Log: Added the missing pom.xml
Added: webservices/xmlrpc/trunk/tests/pom.xml Added: webservices/xmlrpc/trunk/tests/pom.xml URL: http://svn.apache.org/viewcvs/webservices/xmlrpc/trunk/tests/pom.xml?rev=380193&view=auto ============================================================================== --- webservices/xmlrpc/trunk/tests/pom.xml (added) +++ webservices/xmlrpc/trunk/tests/pom.xml Thu Feb 23 10:38:05 2006 @@ -0,0 +1,34 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.apache.xmlrpc</groupId> + <artifactId>xmlrpc</artifactId> + <version>3.0b1-SNAPSHOT</version> + <relativePath>../pom.xml</relativePath> + </parent> + <groupId>org.apache.xmlrpc</groupId> + <artifactId>xmlrpc-tests</artifactId> + <name>Apache XML-RPC Test Library</name> + <version>3.0b1-SNAPSHOT</version> + <build> + <testSourceDirectory>src/test/java</testSourceDirectory> + <testResources> + <testResource> + <directory>src/test/resources</directory> + </testResource> + </testResources> + </build> + <dependencies> + <dependency> + <groupId>org.apache.xmlrpc</groupId> + <artifactId>xmlrpc-client</artifactId> + <version>3.0b1-SNAPSHOT</version> + </dependency> + <dependency> + <groupId>org.apache.xmlrpc</groupId> + <artifactId>xmlrpc-server</artifactId> + <version>3.0b1-SNAPSHOT</version> + </dependency> + </dependencies> +</project>