Author: schof Date: Thu Jun 1 14:55:00 2006 New Revision: 410976 URL: http://svn.apache.org/viewvc?rev=410976&view=rev Log: performed the changes outlined in Wendy's shale-reorg-01.sh script
Added: struts/shale/branches/mvn_reorg/apps/ struts/shale/branches/mvn_reorg/apps/blank/ - copied from r410974, struts/shale/branches/mvn_reorg/blank/ struts/shale/branches/mvn_reorg/apps/mailreader/ - copied from r410974, struts/shale/branches/mvn_reorg/mailreader/ struts/shale/branches/mvn_reorg/apps/sql-browser/ - copied from r410974, struts/shale/branches/mvn_reorg/sql-browser/ struts/shale/branches/mvn_reorg/apps/use-cases/ - copied from r410974, struts/shale/branches/mvn_reorg/use-cases/ struts/shale/branches/mvn_reorg/clay-plugin/pom.xml struts/shale/branches/mvn_reorg/core-library/pom.xml struts/shale/branches/mvn_reorg/designtime/ struts/shale/branches/mvn_reorg/designtime/pom.xml struts/shale/branches/mvn_reorg/spring/ struts/shale/branches/mvn_reorg/spring/pom.xml struts/shale/branches/mvn_reorg/tiger/pom.xml struts/shale/branches/mvn_reorg/tiles/ struts/shale/branches/mvn_reorg/tiles/pom.xml Removed: struts/shale/branches/mvn_reorg/blank/ struts/shale/branches/mvn_reorg/mailreader/ struts/shale/branches/mvn_reorg/sql-browser/ struts/shale/branches/mvn_reorg/use-cases/ Added: struts/shale/branches/mvn_reorg/clay-plugin/pom.xml URL: http://svn.apache.org/viewvc/struts/shale/branches/mvn_reorg/clay-plugin/pom.xml?rev=410976&view=auto ============================================================================== --- struts/shale/branches/mvn_reorg/clay-plugin/pom.xml (added) +++ struts/shale/branches/mvn_reorg/clay-plugin/pom.xml Thu Jun 1 14:55:00 2006 @@ -0,0 +1,53 @@ +<!-- +/* + * 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 160270 2006-05-28 01:11:52Z 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>struts-shale-parent</artifactId> + <version>1.0.3-SNAPSHOT</version> + </parent> + + <artifactId>shale-clay</artifactId> + <packaging>jar</packaging> + <name>Shale Clay Plugin</name> + <url>http://struts.apache.org/struts-shale</url> + + <dependencies> + + <dependency> + <groupId>org.apache.struts.shale</groupId> + <artifactId>shale-core</artifactId> + <version>${version}</version> + </dependency> + <dependency> + <groupId>javax.servlet</groupId> + <artifactId>servlet-api</artifactId> + </dependency> + <dependency> + <groupId>javax.servlet</groupId> + <artifactId>jsp-api</artifactId> + </dependency> + + </dependencies> + +</project> Added: struts/shale/branches/mvn_reorg/core-library/pom.xml URL: http://svn.apache.org/viewvc/struts/shale/branches/mvn_reorg/core-library/pom.xml?rev=410976&view=auto ============================================================================== --- struts/shale/branches/mvn_reorg/core-library/pom.xml (added) +++ struts/shale/branches/mvn_reorg/core-library/pom.xml Thu Jun 1 14:55:00 2006 @@ -0,0 +1,65 @@ +<!-- +/* + * 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 160291 2006-05-31 20:49:24Z 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>struts-shale-parent</artifactId> + <version>1.0.3-SNAPSHOT</version> + </parent> + + <artifactId>shale-core</artifactId> + <packaging>jar</packaging> + <name>Shale Core Library</name> + <url>http://struts.apache.org/struts-shale</url> + + <dependencies> + <dependency> + <groupId>javax.servlet</groupId> + <artifactId>servlet-api</artifactId> + </dependency> + <dependency> + <groupId>commons-chain</groupId> + <artifactId>commons-chain</artifactId> + </dependency> + <dependency> + <groupId>javax.servlet</groupId> + <artifactId>jsp-api</artifactId> + </dependency> + <dependency> + <groupId>commons-validator</groupId> + <artifactId>commons-validator</artifactId> + </dependency> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.apache.struts.shale</groupId> + <artifactId>shale-test</artifactId> + <version>${version}</version> + <scope>test</scope> + </dependency> + </dependencies> + +</project> Added: struts/shale/branches/mvn_reorg/designtime/pom.xml URL: http://svn.apache.org/viewvc/struts/shale/branches/mvn_reorg/designtime/pom.xml?rev=410976&view=auto ============================================================================== --- struts/shale/branches/mvn_reorg/designtime/pom.xml (added) +++ struts/shale/branches/mvn_reorg/designtime/pom.xml Thu Jun 1 14:55:00 2006 @@ -0,0 +1,47 @@ +<!-- +/* + * 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 160258 2006-05-21 01:56:12Z 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>struts-shale-parent</artifactId> + <version>1.0.3-SNAPSHOT</version> + </parent> + + <artifactId>shale-designtime</artifactId> + <packaging>jar</packaging> + <name>Shale Designtime</name> + <url>http://struts.apache.org/struts-shale</url> + + <dependencies> + + <dependency> + <groupId>org.apache.struts.shale</groupId> + <artifactId>shale-core</artifactId> + <version>${pom.version}</version> + </dependency> + + <!-- TODO: Creator dependencies --> + + </dependencies> + +</project> Added: struts/shale/branches/mvn_reorg/spring/pom.xml URL: http://svn.apache.org/viewvc/struts/shale/branches/mvn_reorg/spring/pom.xml?rev=410976&view=auto ============================================================================== --- struts/shale/branches/mvn_reorg/spring/pom.xml (added) +++ struts/shale/branches/mvn_reorg/spring/pom.xml Thu Jun 1 14:55:00 2006 @@ -0,0 +1,75 @@ +<!-- +/* + * 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 160258 2006-05-21 01:56:12Z 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>struts-shale-parent</artifactId> + <version>1.0.3-SNAPSHOT</version> + </parent> + + <artifactId>shale-spring</artifactId> + <packaging>jar</packaging> + <name>Shale-Spring Integration</name> + <url>http://struts.apache.org/struts-shale</url> + + <dependencies> + + <dependency> + <groupId>org.apache.struts.shale</groupId> + <artifactId>shale-core</artifactId> + <version>1.0.3-SNAPSHOT</version> + </dependency> + + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-beans</artifactId> + <version>1.2.2</version> + </dependency> + + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-context</artifactId> + <version>1.2.2</version> + </dependency> + + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-core</artifactId> + <version>1.2.2</version> + </dependency> + + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-web</artifactId> + <version>1.2.2</version> + <exclusions> + <exclusion> + <groupId>javax.faces</groupId> + <artifactId>jsf-api</artifactId> + </exclusion> + </exclusions> + </dependency> + + </dependencies> + +</project> Added: struts/shale/branches/mvn_reorg/tiger/pom.xml URL: http://svn.apache.org/viewvc/struts/shale/branches/mvn_reorg/tiger/pom.xml?rev=410976&view=auto ============================================================================== --- struts/shale/branches/mvn_reorg/tiger/pom.xml (added) +++ struts/shale/branches/mvn_reorg/tiger/pom.xml Thu Jun 1 14:55:00 2006 @@ -0,0 +1,77 @@ +<?xml version="1.0"?> +<!-- +/* + * Copyright 2005-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 160258 2006-05-21 01:56:12Z 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"> + + <parent> + <groupId>org.apache.struts.shale</groupId> + <artifactId>struts-shale-parent</artifactId> + <version>1.0.3-SNAPSHOT</version> + </parent> + <modelVersion>4.0.0</modelVersion> + <artifactId>shale-tiger</artifactId> + <packaging>jar</packaging> + <name>Shale Tiger Extensions</name> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + </plugin> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <configuration> + <source>1.5</source> + <target>1.5</target> + </configuration> + </plugin> + + </plugins> + + </build> + + <dependencies> + <dependency> + <groupId>javax.servlet</groupId> + <artifactId>servlet-api</artifactId> + </dependency> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + </dependency> + <dependency> + <groupId>org.apache.struts.shale</groupId> + <artifactId>shale-core</artifactId> + <version>${pom.version}</version> + </dependency> + <dependency> + <groupId>org.apache.struts.shale</groupId> + <artifactId>shale-test</artifactId> + <version>${pom.version}</version> + </dependency> + </dependencies> + +</project> Added: struts/shale/branches/mvn_reorg/tiles/pom.xml URL: http://svn.apache.org/viewvc/struts/shale/branches/mvn_reorg/tiles/pom.xml?rev=410976&view=auto ============================================================================== --- struts/shale/branches/mvn_reorg/tiles/pom.xml (added) +++ struts/shale/branches/mvn_reorg/tiles/pom.xml Thu Jun 1 14:55:00 2006 @@ -0,0 +1,52 @@ +<!-- +/* + * 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 160258 2006-05-21 01:56:12Z 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>struts-shale-parent</artifactId> + <version>1.0.3-SNAPSHOT</version> + </parent> + + <artifactId>shale-tiles</artifactId> + <packaging>jar</packaging> + <name>Shale Tiles Integration</name> + <url>http://struts.apache.org/struts-shale</url> + + <dependencies> + <dependency> + <groupId>javax.servlet</groupId> + <artifactId>servlet-api</artifactId> + </dependency> + <dependency> + <groupId>org.apache.struts.shale</groupId> + <artifactId>shale-core</artifactId> + <version>${pom.version}</version> + </dependency> + <dependency> + <groupId>org.apache.struts.tiles</groupId> + <artifactId>tiles-core</artifactId> + <version>0.2-SNAPSHOT</version> + </dependency> + </dependencies> + +</project>