Author: apetrelli
Date: Sun Sep 27 19:44:17 2009
New Revision: 819389

URL: http://svn.apache.org/viewvc?rev=819389&view=rev
Log:
TILES-467
Added the additional modules for tiles-test webapp.

Added:
    tiles/framework/trunk/tiles-test-pom/tiles-test-alt/   (with props)
    tiles/framework/trunk/tiles-test-pom/tiles-test-alt/pom.xml   (with props)
    tiles/framework/trunk/tiles-test-pom/tiles-test-alt/src/
    tiles/framework/trunk/tiles-test-pom/tiles-test-alt/src/main/
    tiles/framework/trunk/tiles-test-pom/tiles-test-alt/src/main/java/
    tiles/framework/trunk/tiles-test-pom/tiles-test-alt/src/main/java/META-INF/
    
tiles/framework/trunk/tiles-test-pom/tiles-test-alt/src/main/java/META-INF/MANIFEST.MF
    tiles/framework/trunk/tiles-test-pom/tiles-test-alt/src/main/resources/
    tiles/framework/trunk/tiles-test-pom/tiles-test-alt/src/test/
    tiles/framework/trunk/tiles-test-pom/tiles-test-alt/src/test/java/
    tiles/framework/trunk/tiles-test-pom/tiles-test-alt/src/test/resources/
    tiles/framework/trunk/tiles-test-pom/tiles-test-db/   (with props)
    tiles/framework/trunk/tiles-test-pom/tiles-test-db/pom.xml   (with props)
    tiles/framework/trunk/tiles-test-pom/tiles-test-db/src/
    tiles/framework/trunk/tiles-test-pom/tiles-test-db/src/main/
    tiles/framework/trunk/tiles-test-pom/tiles-test-db/src/main/java/
    tiles/framework/trunk/tiles-test-pom/tiles-test-db/src/main/java/META-INF/
    
tiles/framework/trunk/tiles-test-pom/tiles-test-db/src/main/java/META-INF/MANIFEST.MF
    tiles/framework/trunk/tiles-test-pom/tiles-test-db/src/main/resources/
    tiles/framework/trunk/tiles-test-pom/tiles-test-db/src/test/
    tiles/framework/trunk/tiles-test-pom/tiles-test-db/src/test/java/
    tiles/framework/trunk/tiles-test-pom/tiles-test-db/src/test/resources/
Modified:
    tiles/framework/trunk/tiles-test-pom/pom.xml
    tiles/framework/trunk/tiles-test-pom/tiles-test/pom.xml

Modified: tiles/framework/trunk/tiles-test-pom/pom.xml
URL: 
http://svn.apache.org/viewvc/tiles/framework/trunk/tiles-test-pom/pom.xml?rev=819389&r1=819388&r2=819389&view=diff
==============================================================================
--- tiles/framework/trunk/tiles-test-pom/pom.xml (original)
+++ tiles/framework/trunk/tiles-test-pom/pom.xml Sun Sep 27 19:44:17 2009
@@ -34,6 +34,8 @@
   <name>Tiles test webapp module collector</name>
   <description>Collects all the modules of the Tiles test web 
application.</description>
   <modules>
+    <module>tiles-test-alt</module>
+    <module>tiles-test-db</module>
        <module>tiles-test</module>
   </modules>
 </project>
\ No newline at end of file

Propchange: tiles/framework/trunk/tiles-test-pom/tiles-test-alt/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Sun Sep 27 19:44:17 2009
@@ -0,0 +1,2 @@
+.*
+target

Added: tiles/framework/trunk/tiles-test-pom/tiles-test-alt/pom.xml
URL: 
http://svn.apache.org/viewvc/tiles/framework/trunk/tiles-test-pom/tiles-test-alt/pom.xml?rev=819389&view=auto
==============================================================================
--- tiles/framework/trunk/tiles-test-pom/tiles-test-alt/pom.xml (added)
+++ tiles/framework/trunk/tiles-test-pom/tiles-test-alt/pom.xml Sun Sep 27 
19:44:17 2009
@@ -0,0 +1,35 @@
+<?xml version="1.0"?>
+<!--
+/*
+ * $Id$
+ *
+ * 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>
+    <artifactId>tiles-test-pom</artifactId>
+    <groupId>org.apache.tiles</groupId>
+    <version>2.2.1-SNAPSHOT</version>
+  </parent>
+  <artifactId>tiles-test-alt</artifactId>
+  <name>Tiles - Test webapp alternate configuration</name>
+  <description>Alternate configuration for the test webapp.</description>
+</project>
\ No newline at end of file

Propchange: tiles/framework/trunk/tiles-test-pom/tiles-test-alt/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tiles/framework/trunk/tiles-test-pom/tiles-test-alt/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: 
tiles/framework/trunk/tiles-test-pom/tiles-test-alt/src/main/java/META-INF/MANIFEST.MF
URL: 
http://svn.apache.org/viewvc/tiles/framework/trunk/tiles-test-pom/tiles-test-alt/src/main/java/META-INF/MANIFEST.MF?rev=819389&view=auto
==============================================================================
--- 
tiles/framework/trunk/tiles-test-pom/tiles-test-alt/src/main/java/META-INF/MANIFEST.MF
 (added)
+++ 
tiles/framework/trunk/tiles-test-pom/tiles-test-alt/src/main/java/META-INF/MANIFEST.MF
 Sun Sep 27 19:44:17 2009
@@ -0,0 +1,3 @@
+Manifest-Version: 1.0
+Class-Path: 
+

Propchange: tiles/framework/trunk/tiles-test-pom/tiles-test-db/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Sun Sep 27 19:44:17 2009
@@ -0,0 +1,2 @@
+.*
+target

Added: tiles/framework/trunk/tiles-test-pom/tiles-test-db/pom.xml
URL: 
http://svn.apache.org/viewvc/tiles/framework/trunk/tiles-test-pom/tiles-test-db/pom.xml?rev=819389&view=auto
==============================================================================
--- tiles/framework/trunk/tiles-test-pom/tiles-test-db/pom.xml (added)
+++ tiles/framework/trunk/tiles-test-pom/tiles-test-db/pom.xml Sun Sep 27 
19:44:17 2009
@@ -0,0 +1,35 @@
+<?xml version="1.0"?>
+<!--
+/*
+ * $Id$
+ *
+ * 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>
+    <artifactId>tiles-test-pom</artifactId>
+    <groupId>org.apache.tiles</groupId>
+    <version>2.2.1-SNAPSHOT</version>
+  </parent>
+  <artifactId>tiles-test-db</artifactId>
+  <name>Tiles - Test webapp database configuration</name>
+  <description>Tiles configuration that uses a database.</description>
+</project>
\ No newline at end of file

Propchange: tiles/framework/trunk/tiles-test-pom/tiles-test-db/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tiles/framework/trunk/tiles-test-pom/tiles-test-db/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: 
tiles/framework/trunk/tiles-test-pom/tiles-test-db/src/main/java/META-INF/MANIFEST.MF
URL: 
http://svn.apache.org/viewvc/tiles/framework/trunk/tiles-test-pom/tiles-test-db/src/main/java/META-INF/MANIFEST.MF?rev=819389&view=auto
==============================================================================
--- 
tiles/framework/trunk/tiles-test-pom/tiles-test-db/src/main/java/META-INF/MANIFEST.MF
 (added)
+++ 
tiles/framework/trunk/tiles-test-pom/tiles-test-db/src/main/java/META-INF/MANIFEST.MF
 Sun Sep 27 19:44:17 2009
@@ -0,0 +1,3 @@
+Manifest-Version: 1.0
+Class-Path: 
+

Modified: tiles/framework/trunk/tiles-test-pom/tiles-test/pom.xml
URL: 
http://svn.apache.org/viewvc/tiles/framework/trunk/tiles-test-pom/tiles-test/pom.xml?rev=819389&r1=819388&r2=819389&view=diff
==============================================================================
--- tiles/framework/trunk/tiles-test-pom/tiles-test/pom.xml (original)
+++ tiles/framework/trunk/tiles-test-pom/tiles-test/pom.xml Sun Sep 27 19:44:17 
2009
@@ -39,6 +39,16 @@
    <dependencies>
       <dependency>
          <groupId>${pom.groupId}</groupId>
+         <artifactId>tiles-test-alt</artifactId>
+         <version>${pom.version}</version>
+      </dependency>
+      <dependency>
+         <groupId>${pom.groupId}</groupId>
+         <artifactId>tiles-test-db</artifactId>
+         <version>${pom.version}</version>
+      </dependency>
+      <dependency>
+         <groupId>${pom.groupId}</groupId>
          <artifactId>tiles-extras</artifactId>
          <version>${pom.version}</version>
       </dependency>


Reply via email to