Author: schof Date: Thu Jun 1 17:57:29 2006 New Revision: 411012 URL: http://svn.apache.org/viewvc?rev=411012&view=rev Log: added some recent poms from test repo
Added: struts/shale/branches/mvn_reorg/apps/pom.xml (with props) struts/shale/branches/mvn_reorg/apps/sql-browser/pom.xml (with props) struts/shale/branches/mvn_reorg/test-framework/pom.xml (with props) Modified: struts/shale/branches/mvn_reorg/pom.xml Added: struts/shale/branches/mvn_reorg/apps/pom.xml URL: http://svn.apache.org/viewvc/struts/shale/branches/mvn_reorg/apps/pom.xml?rev=411012&view=auto ============================================================================== --- struts/shale/branches/mvn_reorg/apps/pom.xml (added) +++ struts/shale/branches/mvn_reorg/apps/pom.xml Thu Jun 1 17:57:29 2006 @@ -0,0 +1,55 @@ +<!-- +/* + * 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$ + */ +--> +<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>struts-shale-parent</artifactId> + <version>1.0.3-SNAPSHOT</version> + </parent> + <groupId>org.apache.struts.shale</groupId> + <artifactId>struts-shale-apps-parent</artifactId> + <packaging>pom</packaging> + <name>Apache Shale Framework Sample Apps</name> + <url>http://struts.apache.org/struts-shale</url> +<!-- + --> + <profiles> + <profile> + <activation> + <jdk>1.5</jdk> + </activation> + <modules> + <module>sql-browser</module> + </modules> + </profile> + </profiles> + + <modules> + <!-- + <module>blank</module> + <module>mailreader</module> + <module>use-cases</module> + --> + </modules> + +</project> Propchange: struts/shale/branches/mvn_reorg/apps/pom.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: struts/shale/branches/mvn_reorg/apps/pom.xml ------------------------------------------------------------------------------ svn:keywords = date author id rev Added: struts/shale/branches/mvn_reorg/apps/sql-browser/pom.xml URL: http://svn.apache.org/viewvc/struts/shale/branches/mvn_reorg/apps/sql-browser/pom.xml?rev=411012&view=auto ============================================================================== --- struts/shale/branches/mvn_reorg/apps/sql-browser/pom.xml (added) +++ struts/shale/branches/mvn_reorg/apps/sql-browser/pom.xml Thu Jun 1 17:57:29 2006 @@ -0,0 +1,103 @@ +<!-- +/* + * 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$ + */ +--> +<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>struts-shale-apps-parent</artifactId> + <version>1.0.3-SNAPSHOT</version> + </parent> + <artifactId>struts-shale-apps-sql-browser</artifactId> + <version>1.0.3-SNAPSHOT</version> + <packaging>war</packaging> + <name>Shale Sql Browser Sample App</name> + <url>http://struts.apache.org/struts-shale</url> + + <build> + <sourceDirectory>src/java</sourceDirectory> + <pluginManagement> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-war-plugin</artifactId> + <configuration> + <warSourceDirectory>src/web/</warSourceDirectory> + </configuration> + </plugin> + </plugins> + </pluginManagement> + </build> + + <dependencies> + <dependency> + <groupId>org.apache.derby</groupId> + <artifactId>derby</artifactId> + <version>10.1.2.1</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-tiger</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> + + + </dependencies> + +</project> Propchange: struts/shale/branches/mvn_reorg/apps/sql-browser/pom.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: struts/shale/branches/mvn_reorg/apps/sql-browser/pom.xml ------------------------------------------------------------------------------ svn:keywords = date author id rev Modified: struts/shale/branches/mvn_reorg/pom.xml URL: http://svn.apache.org/viewvc/struts/shale/branches/mvn_reorg/pom.xml?rev=411012&r1=411011&r2=411012&view=diff ============================================================================== --- struts/shale/branches/mvn_reorg/pom.xml (original) +++ struts/shale/branches/mvn_reorg/pom.xml Thu Jun 1 17:57:29 2006 @@ -133,6 +133,7 @@ </includes> </resource> </resources> +<!-- <testResources> <testResource> <directory>src/test/java</directory> @@ -143,7 +144,7 @@ </includes> </testResource> </testResources> - +--> <pluginManagement> <plugins> <!-- Added: struts/shale/branches/mvn_reorg/test-framework/pom.xml URL: http://svn.apache.org/viewvc/struts/shale/branches/mvn_reorg/test-framework/pom.xml?rev=411012&view=auto ============================================================================== --- struts/shale/branches/mvn_reorg/test-framework/pom.xml (added) +++ struts/shale/branches/mvn_reorg/test-framework/pom.xml Thu Jun 1 17:57:29 2006 @@ -0,0 +1,54 @@ +<!-- +/* + * 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$ + */ +--> +<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>struts-shale-parent</artifactId> + <version>1.0.3-SNAPSHOT</version> + </parent> + + <artifactId>shale-test</artifactId> + <packaging>jar</packaging> + <name>Shale Test Framework</name> + <url>http://struts.apache.org/struts-shale</url> + + <dependencies> + <dependency> + <groupId>javax.servlet</groupId> + <artifactId>servlet-api</artifactId> + </dependency> + <dependency> + <groupId>htmlunit</groupId> + <artifactId>htmlunit</artifactId> + <version>1.7</version> + <optional>true</optional> + <exclusions> + <exclusion> + <groupId>javax.xml</groupId> + <artifactId>jsr173</artifactId> + </exclusion> + </exclusions> + </dependency> + </dependencies> + +</project> Propchange: struts/shale/branches/mvn_reorg/test-framework/pom.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: struts/shale/branches/mvn_reorg/test-framework/pom.xml ------------------------------------------------------------------------------ svn:keywords = date author id rev