Author: apetrelli
Date: Wed Feb 18 12:49:23 2009
New Revision: 745502

URL: http://svn.apache.org/viewvc?rev=745502&view=rev
Log:
TILES-369
Created new "tiles-template" module and moved code from tiles-freemarker.

Added:
    tiles/framework/trunk/tiles-template/pom.xml   (with props)
    tiles/framework/trunk/tiles-template/src/
    tiles/framework/trunk/tiles-template/src/main/
    tiles/framework/trunk/tiles-template/src/main/java/
    tiles/framework/trunk/tiles-template/src/main/java/org/
    tiles/framework/trunk/tiles-template/src/main/java/org/apache/
    tiles/framework/trunk/tiles-template/src/main/java/org/apache/tiles/
    
tiles/framework/trunk/tiles-template/src/main/java/org/apache/tiles/template/
      - copied from r745034, 
tiles/framework/trunk/tiles-freemarker/src/main/java/org/apache/tiles/template/
    tiles/framework/trunk/tiles-template/src/main/resources/
    tiles/framework/trunk/tiles-template/src/test/
    tiles/framework/trunk/tiles-template/src/test/java/
    tiles/framework/trunk/tiles-template/src/test/resources/
Removed:
    
tiles/framework/trunk/tiles-freemarker/src/main/java/org/apache/tiles/template/
Modified:
    tiles/framework/trunk/pom.xml
    tiles/framework/trunk/tiles-freemarker/pom.xml
    tiles/framework/trunk/tiles-template/   (props changed)

Modified: tiles/framework/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/tiles/framework/trunk/pom.xml?rev=745502&r1=745501&r2=745502&view=diff
==============================================================================
--- tiles/framework/trunk/pom.xml (original)
+++ tiles/framework/trunk/pom.xml Wed Feb 18 12:49:23 2009
@@ -49,6 +49,7 @@
     <modules>
         <module>tiles-api</module>
         <module>tiles-core</module>
+        <module>tiles-template</module>
         <module>tiles-servlet</module>
         <module>tiles-jsp</module>
         <module>tiles-freemarker</module>

Modified: tiles/framework/trunk/tiles-freemarker/pom.xml
URL: 
http://svn.apache.org/viewvc/tiles/framework/trunk/tiles-freemarker/pom.xml?rev=745502&r1=745501&r2=745502&view=diff
==============================================================================
--- tiles/framework/trunk/tiles-freemarker/pom.xml (original)
+++ tiles/framework/trunk/tiles-freemarker/pom.xml Wed Feb 18 12:49:23 2009
@@ -40,6 +40,11 @@
                <artifactId>tiles-servlet</artifactId>
                <version>${pom.version}</version>
        </dependency>
+    <dependency>
+      <groupId>org.apache.tiles</groupId>
+      <artifactId>tiles-template</artifactId>
+      <version>${pom.version}</version>
+    </dependency>
        <dependency>
                <groupId>org.freemarker</groupId>
                <artifactId>freemarker</artifactId>

Propchange: tiles/framework/trunk/tiles-template/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Wed Feb 18 12:49:23 2009
@@ -0,0 +1,2 @@
+target
+.*

Added: tiles/framework/trunk/tiles-template/pom.xml
URL: 
http://svn.apache.org/viewvc/tiles/framework/trunk/tiles-template/pom.xml?rev=745502&view=auto
==============================================================================
--- tiles/framework/trunk/tiles-template/pom.xml (added)
+++ tiles/framework/trunk/tiles-template/pom.xml Wed Feb 18 12:49:23 2009
@@ -0,0 +1,64 @@
+<?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>
+  <groupId>org.apache.tiles</groupId>
+  <artifactId>tiles-template</artifactId>
+  <name>Tiles - Template Technologies Support</name>
+  <description>Common code for integration of Tiles for different templating 
technologies.</description>
+  <parent>
+    <artifactId>tiles-parent</artifactId>
+    <groupId>org.apache.tiles</groupId>
+    <version>2.2.0-SNAPSHOT</version>
+  </parent>
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.tiles</groupId>
+      <artifactId>tiles-api</artifactId>
+      <version>${pom.version}</version>
+    </dependency>
+
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>4.0</version>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.easymock</groupId>
+      <artifactId>easymock</artifactId>
+      <version>2.4</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.easymock</groupId>
+      <artifactId>easymockclassextension</artifactId>
+      <version>2.4</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+</project>
\ No newline at end of file

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

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


Reply via email to