Author: apetrelli
Date: Wed Jul 9 11:27:54 2008
New Revision: 675286
URL: http://svn.apache.org/viewvc?rev=675286&view=rev
Log:
TILES-154
Moved portlet code to a new module.
Added:
tiles/framework/trunk/tiles-portlet/ (with props)
tiles/framework/trunk/tiles-portlet/pom.xml (with props)
tiles/framework/trunk/tiles-portlet/src/
tiles/framework/trunk/tiles-portlet/src/main/
tiles/framework/trunk/tiles-portlet/src/main/java/
tiles/framework/trunk/tiles-portlet/src/main/java/org/
tiles/framework/trunk/tiles-portlet/src/main/java/org/apache/
tiles/framework/trunk/tiles-portlet/src/main/java/org/apache/tiles/
tiles/framework/trunk/tiles-portlet/src/main/java/org/apache/tiles/portlet/
tiles/framework/trunk/tiles-portlet/src/main/java/org/apache/tiles/portlet/context/
(props changed)
- copied from r674919,
tiles/framework/trunk/tiles-core/src/main/java/org/apache/tiles/portlet/context/
tiles/framework/trunk/tiles-portlet/src/test/
tiles/framework/trunk/tiles-portlet/src/test/java/
tiles/framework/trunk/tiles-portlet/src/test/java/org/
tiles/framework/trunk/tiles-portlet/src/test/java/org/apache/
tiles/framework/trunk/tiles-portlet/src/test/java/org/apache/tiles/
tiles/framework/trunk/tiles-portlet/src/test/java/org/apache/tiles/portlet/
tiles/framework/trunk/tiles-portlet/src/test/java/org/apache/tiles/portlet/context/
(props changed)
- copied from r674919,
tiles/framework/trunk/tiles-core/src/test/java/org/apache/tiles/portlet/context/
Removed:
tiles/framework/trunk/tiles-core/src/main/java/org/apache/tiles/portlet/
tiles/framework/trunk/tiles-core/src/test/java/org/apache/tiles/portlet/
Modified:
tiles/framework/trunk/pom.xml
Modified: tiles/framework/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/tiles/framework/trunk/pom.xml?rev=675286&r1=675285&r2=675286&view=diff
==============================================================================
--- tiles/framework/trunk/pom.xml (original)
+++ tiles/framework/trunk/pom.xml Wed Jul 9 11:27:54 2008
@@ -51,6 +51,7 @@
<module>tiles-core</module>
<module>tiles-servlet</module>
<module>tiles-jsp</module>
+ <module>tiles-portlet</module>
<module>tiles-compat</module>
<module>tiles-test</module>
<module>assembly</module>
Propchange: tiles/framework/trunk/tiles-portlet/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Wed Jul 9 11:27:54 2008
@@ -0,0 +1 @@
+target
Added: tiles/framework/trunk/tiles-portlet/pom.xml
URL:
http://svn.apache.org/viewvc/tiles/framework/trunk/tiles-portlet/pom.xml?rev=675286&view=auto
==============================================================================
--- tiles/framework/trunk/tiles-portlet/pom.xml (added)
+++ tiles/framework/trunk/tiles-portlet/pom.xml Wed Jul 9 11:27:54 2008
@@ -0,0 +1,177 @@
+<?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">
+
+ <parent>
+ <groupId>org.apache.tiles</groupId>
+ <artifactId>tiles-parent</artifactId>
+ <version>2.1.0-SNAPSHOT</version>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+ <artifactId>tiles-portlet</artifactId>
+ <packaging>jar</packaging>
+ <name>Tiles - Portlet support</name>
+ <description>Tiles portlet support, to enable use of Tiles inside a Portlet
container.
+ </description>
+
+ <build>
+ <resources>
+ <resource>
+ <directory>src/main/resources</directory>
+ <excludes>
+ <exclude>LICENSE.txt</exclude>
+ <exclude>NOTICE.txt</exclude>
+ </excludes>
+ </resource>
+ <resource>
+ <directory>src/main/resources</directory>
+ <includes>
+ <include>LICENSE.txt</include>
+ <include>NOTICE.txt</include>
+ </includes>
+ <targetPath>META-INF</targetPath>
+ </resource>
+ </resources>
+
+ <testResources>
+ <testResource>
+ <directory>src/test/java</directory>
+ <includes>
+ <include>**/*.xml</include>
+ <include>**/*.properties</include>
+ </includes>
+ </testResource>
+ </testResources>
+ <plugins>
+ <plugin>
+ <artifactId>maven-jar-plugin</artifactId>
+ <configuration>
+ <archive>
+ <manifest>
+ </manifest>
+ </archive>
+ </configuration>
+ </plugin>
+ </plugins>
+
+ </build>
+
+ <profiles>
+
+ <profile>
+ <id>j4</id>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>retrotranslator-maven-plugin</artifactId>
+ <version>1.0-alpha-2</version>
+ <executions>
+ <execution>
+ <id>retrotranslate</id>
+ <goals>
+ <goal>translate-project</goal>
+ </goals>
+ <configuration>
+ <classifier>j4</classifier>
+ <attach>true</attach>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
+
+ <reporting>
+ <plugins>
+ <plugin>
+ <groupId>net.sf.dtddoc</groupId>
+ <artifactId>dtddoc-maven-plugin</artifactId>
+ <configuration>
+ <docTitle>Tiles Definition File</docTitle>
+ </configuration>
+ </plugin>
+ </plugins>
+ </reporting>
+
+
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.tiles</groupId>
+ <artifactId>tiles-core</artifactId>
+ <version>${pom.version}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>javax.portlet</groupId>
+ <artifactId>portlet-api</artifactId>
+ <version>1.0</version>
+ <scope>provided</scope>
+ </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.3</version>
+ <scope>test</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>org.apache.shale</groupId>
+ <artifactId>shale-test</artifactId>
+ <version>1.0.4</version>
+ <scope>test</scope>
+ </dependency>
+
+ </dependencies>
+
+ <repositories>
+ <repository>
+ <id>dtddoc</id>
+ <url>http://dtddoc.sf.net/maven2</url>
+ </repository>
+ <repository>
+ <id>java_net</id>
+ <url>http://download.java.net/maven/1/</url>
+ <layout>legacy</layout>
+ </repository>
+ </repositories>
+ <pluginRepositories>
+ <pluginRepository>
+ <id>dtddoc</id>
+ <url>http://dtddoc.sf.net/maven2</url>
+ </pluginRepository>
+ </pluginRepositories>
+
+</project>
Propchange: tiles/framework/trunk/tiles-portlet/pom.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: tiles/framework/trunk/tiles-portlet/pom.xml
------------------------------------------------------------------------------
svn:keywords = Date Author Id Revision HeadURL
Propchange:
tiles/framework/trunk/tiles-portlet/src/main/java/org/apache/tiles/portlet/context/
------------------------------------------------------------------------------
svn:mergeinfo =
Propchange:
tiles/framework/trunk/tiles-portlet/src/test/java/org/apache/tiles/portlet/context/
------------------------------------------------------------------------------
svn:mergeinfo =