Author: niallp Date: Tue Mar 16 01:26:55 2010 New Revision: 923533 URL: http://svn.apache.org/viewvc?rev=923533&view=rev Log: Forgot to add pom.xml
Added: commons/dormant/latka/trunk/pom.xml (with props) Added: commons/dormant/latka/trunk/pom.xml URL: http://svn.apache.org/viewvc/commons/dormant/latka/trunk/pom.xml?rev=923533&view=auto ============================================================================== --- commons/dormant/latka/trunk/pom.xml (added) +++ commons/dormant/latka/trunk/pom.xml Tue Mar 16 01:26:55 2010 @@ -0,0 +1,197 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<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> + <parent> + <groupId>org.apache.commons</groupId> + <artifactId>commons-sandbox-parent</artifactId> + <version>7</version> + </parent> + <groupId>org.apache.commons</groupId> + <artifactId>commons-latka</artifactId> + <version>1.0-SNAPSHOT</version> + <name>Commons Latka</name> + <description> + Latka is a functional (end-to-end) testing tool. It is implemented + in Java, and uses an XML syntax to define a series of HTTP (or + HTTPS) requests and a set of validations used to verify that the + request was processed correctly. + </description> + <url>http://commons.apache.org/dormant/latka/</url> + + <scm> + <connection>scm:svn:http://svn.apache.org/repos/asf/commons/dormant/latka/trunk/</connection> + <developerConnection>scm:svn:https://svn.apache.org/repos/asf/commons/dormant/latka/trunk/</developerConnection> + <url>http://svn.apache.org/viewvc/commons/dormant/latka/trunk/</url> + </scm> + + <developers> + <developer> + <name>Morgan Delagrange</name> + <id>morgand</id> + </developer> + <developer> + <name>Doug Sale</name> + <id>dsale</id> + </developer> + <developer> + <name>Rodney Waldhoff</name> + <id>rwaldhoff</id> + </developer> + <developer> + <name>Jeff Turner</name> + <id>jefft</id> + </developer> + <developer> + <name>dIon Gillard</name> + <id>dion</id> + </developer> + <developer> + <name>Tim O'Brien</name> + <id>tobrien</id> + </developer> + </developers> + + <dependencies> + <dependency> + <groupId>ant</groupId> + <artifactId>ant</artifactId> + <version>1.5</version> + </dependency> + <dependency> + <groupId>ant</groupId> + <artifactId>ant-optional</artifactId> + <version>1.5</version> + </dependency> + <dependency> + <groupId>commons-httpclient</groupId> + <artifactId>commons-httpclient</artifactId> + <version>2.0</version> + </dependency> + <dependency> + <groupId>commons-jelly</groupId> + <artifactId>commons-jelly</artifactId> + <version>1.0</version> + </dependency> + <dependency> + <groupId>commons-jelly</groupId> + <artifactId>commons-jelly-tags-junit</artifactId> + <version>1.0</version> + </dependency> + <dependency> + <groupId>commons-logging</groupId> + <artifactId>commons-logging</artifactId> + <version>1.0.1</version> + </dependency> + <dependency> + <groupId>jaxen</groupId> + <artifactId>jaxen</artifactId> + <version>1.0-FCS</version> + </dependency> + <dependency> + <groupId>jdom</groupId> + <artifactId>jdom</artifactId> + <version>b7</version> + </dependency> + <dependency> + <groupId>dom4j</groupId> + <artifactId>dom4j</artifactId> + <version>1.4-dev-7</version> + </dependency> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>3.8.1</version> + </dependency> + <dependency> + <groupId>log4j</groupId> + <artifactId>log4j</artifactId> + <version>1.2.4</version> + </dependency> + <dependency> + <groupId>regexp</groupId> + <artifactId>regexp</artifactId> + <version>1.2</version> + </dependency> + <dependency> + <groupId>saxpath</groupId> + <artifactId>saxpath</artifactId> + <version>1.0-FCS</version> + </dependency> + <dependency> + <groupId>javax.servlet</groupId> + <artifactId>servlet-api</artifactId> + <version>2.2</version> + </dependency> + <dependency> + <groupId>xalan</groupId> + <artifactId>xalan</artifactId> + <version>2.3.1</version> + </dependency> + <dependency> + <groupId>xerces</groupId> + <artifactId>xercesImpl</artifactId> + <version>2.0.0</version> + </dependency> + <dependency> + <groupId>xml-apis</groupId> + <artifactId>xml-apis</artifactId> + <version>1.0.b2</version> + </dependency> + <!-- for jelly --> + <dependency> + <groupId>commons-collections</groupId> + <artifactId>commons-collections</artifactId> + <version>2.1</version> + </dependency> + <dependency> + <groupId>commons-beanutils</groupId> + <artifactId>commons-beanutils</artifactId> + <version>1.6</version> + </dependency> + <dependency> + <groupId>commons-jexl</groupId> + <artifactId>commons-jexl</artifactId> + <version>1.0</version> + </dependency> + </dependencies> + + <properties> + <commons.componentid>latka</commons.componentid> + </properties> + + <build> + <sourceDirectory>src/java</sourceDirectory> + <testSourceDirectory>src/test</testSourceDirectory> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <includes> + <include>**/*Test*</include> + </includes> + <excludes> + <exclude>**/TestAll.*</exclude> + </excludes> + </configuration> + </plugin> + </plugins> + </build> + +</project> Propchange: commons/dormant/latka/trunk/pom.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: commons/dormant/latka/trunk/pom.xml ------------------------------------------------------------------------------ svn:keywords = Date Author Id Revision HeadURL