Author: craigmcc Date: Fri Jun 9 22:43:17 2006 New Revision: 413254 URL: http://svn.apache.org/viewvc?rev=413254&view=rev Log: Guess it would help to add the POM for this webapp.
Added: struts/shale/branches/mvn_reorg/shale-apps/shale-usecases/pom.xml Added: struts/shale/branches/mvn_reorg/shale-apps/shale-usecases/pom.xml URL: http://svn.apache.org/viewvc/struts/shale/branches/mvn_reorg/shale-apps/shale-usecases/pom.xml?rev=413254&view=auto ============================================================================== --- struts/shale/branches/mvn_reorg/shale-apps/shale-usecases/pom.xml (added) +++ struts/shale/branches/mvn_reorg/shale-apps/shale-usecases/pom.xml Fri Jun 9 22:43:17 2006 @@ -0,0 +1,180 @@ +<!-- +/* + * Copyright 2006 The Apache Software Foundation. + * + * Licensed 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. + * + * $Id: pom.xml 412639 2006-06-08 03:18:28Z wsmoak $ + */ +--> +<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.struts.shale</groupId> + <artifactId>shale-apps</artifactId> + <version>1.0.3-SNAPSHOT</version> + </parent> + <artifactId>shale-usecases</artifactId> + <packaging>war</packaging> + <name>Shale Use Cases Sample App</name> + <url>http://struts.apache.org/struts-shale</url> + + <dependencies> + + <dependency> + <groupId>org.apache.struts.shale</groupId> + <artifactId>shale-clay</artifactId> + <version>${version}</version> + </dependency> + + <dependency> + <groupId>org.apache.struts.shale</groupId> + <artifactId>shale-core</artifactId> + <version>${version}</version> + </dependency> + + <dependency> + <groupId>org.apache.struts.shale</groupId> + <artifactId>shale-remoting</artifactId> + <version>${version}</version> + </dependency> + + <dependency> + <groupId>org.apache.struts.shale</groupId> + <artifactId>shale-spring</artifactId> + <version>${version}</version> + </dependency> + + <dependency> + <groupId>org.apache.struts.shale</groupId> + <artifactId>shale-test</artifactId> + <version>${version}</version> + <scope>test</scope> + </dependency> + + <dependency> + <groupId>javax.servlet</groupId> + <artifactId>jstl</artifactId> + <version>1.1.2</version> + </dependency> + + <dependency> + <groupId>javax.servlet</groupId> + <artifactId>servlet-api</artifactId> + <version>2.4</version> + </dependency> + + <dependency> + <groupId>javax.servlet</groupId> + <artifactId>jsp-api</artifactId> + <version>2.0</version> + </dependency> + + <dependency> + <groupId>taglibs</groupId> + <artifactId>standard</artifactId> + <version>1.1.2</version> + </dependency> + + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <scope>test</scope> + </dependency> + + <dependency> + <groupId>htmlunit</groupId> + <artifactId>htmlunit</artifactId> + <version>1.8</version> + <scope>test</scope> + <exclusions> + <exclusion> + <groupId>javax.xml</groupId> + <artifactId>jsr173</artifactId> + </exclusion> + </exclusions> + </dependency> + + <dependency> + <groupId>org.codehaus.cargo</groupId> + <artifactId>cargo-core-uberjar</artifactId> + <version>0.8</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.codehaus.cargo</groupId> + <artifactId>cargo-ant</artifactId> + <version>0.8</version> + <scope>test</scope> + </dependency> + + </dependencies> + + <build> + <plugins> + <plugin> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <excludes> + <exclude>**/systest/**</exclude> + </excludes> + </configuration> + </plugin> + </plugins> + </build> + + <profiles> + <profile> + <id>itest</id> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <executions> + <execution> + <id>surefire-it</id> + <phase>integration-test</phase> + <goals> + <goal>test</goal> + </goals> + <configuration> + <excludes> + <exclude>none</exclude> + </excludes> + <includes> + <include>**/systest/**</include> + </includes> + <systemProperties> + <property> + <name>url</name> + <value>http://localhost:8080/shale-usecases</value> + </property> + <!-- Define cargo.tomcat5x.home ~/.m2/settings.xml or with -D on the command line --> + <property> + <name>cargo.tomcat5x.home</name> + <value>${cargo.tomcat5x.home}</value> + </property> + </systemProperties> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + </profile> + </profiles> + +</project>