Author: mrdon
Date: Thu Sep 28 23:01:40 2006
New Revision: 451138

URL: http://svn.apache.org/viewvc?view=rev&rev=451138
Log:
Moving tiles into its own plugin
WW-1457

Added:
    struts/struts2/trunk/plugins/tiles/
    struts/struts2/trunk/plugins/tiles/pom.xml
    struts/struts2/trunk/plugins/tiles/src/
    struts/struts2/trunk/plugins/tiles/src/main/
    struts/struts2/trunk/plugins/tiles/src/main/java/
    struts/struts2/trunk/plugins/tiles/src/main/java/org/
    struts/struts2/trunk/plugins/tiles/src/main/java/org/apache/
    struts/struts2/trunk/plugins/tiles/src/main/java/org/apache/struts2/
    struts/struts2/trunk/plugins/tiles/src/main/java/org/apache/struts2/tiles/
      - copied from r451137, 
struts/struts2/trunk/core/src/main/java/org/apache/struts2/tiles/
    struts/struts2/trunk/plugins/tiles/src/main/java/org/apache/struts2/views/
    
struts/struts2/trunk/plugins/tiles/src/main/java/org/apache/struts2/views/tiles/
      - copied from r451134, 
struts/struts2/trunk/core/src/main/java/org/apache/struts2/views/tiles/
    
struts/struts2/trunk/plugins/tiles/src/main/java/org/apache/struts2/views/tiles/TilesResult.java
      - copied unchanged from r451137, 
struts/struts2/trunk/core/src/main/java/org/apache/struts2/views/tiles/TilesResult.java
Removed:
    struts/struts2/trunk/core/src/main/java/org/apache/struts2/tiles/
    struts/struts2/trunk/core/src/main/java/org/apache/struts2/views/tiles/
Modified:
    struts/struts2/trunk/core/pom.xml

Modified: struts/struts2/trunk/core/pom.xml
URL: 
http://svn.apache.org/viewvc/struts/struts2/trunk/core/pom.xml?view=diff&rev=451138&r1=451137&r2=451138
==============================================================================
--- struts/struts2/trunk/core/pom.xml (original)
+++ struts/struts2/trunk/core/pom.xml Thu Sep 28 23:01:40 2006
@@ -200,14 +200,7 @@
             <optional>true</optional>
         </dependency>
 
-        <!-- Tiles -->
-        <dependency>
-            <groupId>org.apache.struts.tiles</groupId>
-            <artifactId>tiles-core</artifactId>
-            <version>2.0-SNAPSHOT</version>
-            <optional>true</optional>
-        </dependency>
-        <dependency>
+       <dependency>
             <groupId>commons-digester</groupId>
             <artifactId>commons-digester</artifactId>
             <version>1.7</version>

Added: struts/struts2/trunk/plugins/tiles/pom.xml
URL: 
http://svn.apache.org/viewvc/struts/struts2/trunk/plugins/tiles/pom.xml?view=auto&rev=451138
==============================================================================
--- struts/struts2/trunk/plugins/tiles/pom.xml (added)
+++ struts/struts2/trunk/plugins/tiles/pom.xml Thu Sep 28 23:01:40 2006
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<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</groupId>
+        <artifactId>struts2-plugins</artifactId>
+        <version>2.0.1-SNAPSHOT</version>
+    </parent>
+    <groupId>org.apache.struts</groupId>
+    <artifactId>struts2-tiles-plugin</artifactId>
+    <packaging>jar</packaging>
+    <name>Struts 2 Tiles Plugin</name>
+    
+    <distributionManagement>
+        <site>
+            <id>apache-site</id>
+            
<url>scp://people.apache.org/www/struts.apache.org/2.x/plugins/tiles</url>
+        </site>
+    </distributionManagement>
+    
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.struts.tiles</groupId>
+            <artifactId>tiles-core</artifactId>
+            <version>2.0-SNAPSHOT</version>
+        </dependency>
+        <dependency>
+            <groupId>javax.servlet</groupId>
+            <artifactId>jsp-api</artifactId>
+            <version>2.0</version>
+            <scope>provided</scope>
+        </dependency>
+
+    </dependencies>
+</project>


Reply via email to