You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tiles.apache.org by ap...@apache.org on 2009/09/19 14:40:42 UTC

svn commit: r816907 - in /tiles/framework/trunk: ./ tiles-portlet-wildcard/ tiles-portlet-wildcard/src/ tiles-portlet-wildcard/src/main/ tiles-portlet-wildcard/src/main/java/ tiles-portlet-wildcard/src/main/resources/ tiles-portlet-wildcard/src/test/ t...

Author: apetrelli
Date: Sat Sep 19 12:40:41 2009
New Revision: 816907

URL: http://svn.apache.org/viewvc?rev=816907&view=rev
Log:
TILES-458
Added tiles-portlet-wildcard module.

Added:
    tiles/framework/trunk/tiles-portlet-wildcard/   (with props)
    tiles/framework/trunk/tiles-portlet-wildcard/pom.xml   (with props)
    tiles/framework/trunk/tiles-portlet-wildcard/src/
    tiles/framework/trunk/tiles-portlet-wildcard/src/main/
    tiles/framework/trunk/tiles-portlet-wildcard/src/main/java/
    tiles/framework/trunk/tiles-portlet-wildcard/src/main/resources/
    tiles/framework/trunk/tiles-portlet-wildcard/src/test/
    tiles/framework/trunk/tiles-portlet-wildcard/src/test/java/
    tiles/framework/trunk/tiles-portlet-wildcard/src/test/resources/
Modified:
    tiles/framework/trunk/pom.xml

Modified: tiles/framework/trunk/pom.xml
URL: http://svn.apache.org/viewvc/tiles/framework/trunk/pom.xml?rev=816907&r1=816906&r2=816907&view=diff
==============================================================================
--- tiles/framework/trunk/pom.xml (original)
+++ tiles/framework/trunk/pom.xml Sat Sep 19 12:40:41 2009
@@ -59,6 +59,7 @@
         <module>tiles-mvel</module>
         <module>tiles-ognl</module>
         <module>tiles-portlet</module>
+        <module>tiles-portlet-wildcard</module>
         <module>tiles-compat</module>
         <module>tiles-extras</module>
         <module>tiles-test</module>

Propchange: tiles/framework/trunk/tiles-portlet-wildcard/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Sat Sep 19 12:40:41 2009
@@ -0,0 +1,2 @@
+.*
+target

Added: tiles/framework/trunk/tiles-portlet-wildcard/pom.xml
URL: http://svn.apache.org/viewvc/tiles/framework/trunk/tiles-portlet-wildcard/pom.xml?rev=816907&view=auto
==============================================================================
--- tiles/framework/trunk/tiles-portlet-wildcard/pom.xml (added)
+++ tiles/framework/trunk/tiles-portlet-wildcard/pom.xml Sat Sep 19 12:40:41 2009
@@ -0,0 +1,149 @@
+<?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.2.1-SNAPSHOT</version>
+  </parent>
+
+  <modelVersion>4.0.0</modelVersion>
+  <artifactId>tiles-portlet-wildcard</artifactId>
+  <packaging>jar</packaging>
+  <name>Tiles - Wildcard file loading in Portlets</name>
+  <description>Tiles Wildcard file loading in Portlets: Allows to load resources using wildcards.</description>
+
+  <properties>
+  	<tiles.osgi.symbolicName>org.apache.tiles.servlet.wildcard</tiles.osgi.symbolicName>
+  </properties>
+
+  <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>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.tiles</groupId>
+      <artifactId>tiles-portlet</artifactId>
+      <version>${pom.version}</version>
+    </dependency>
+
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-jdk14</artifactId>
+      <version>1.5.8</version>
+      <optional>true</optional>
+    </dependency>
+
+
+    <dependency>
+      <groupId>org.springframework</groupId>
+      <artifactId>spring-web</artifactId>
+      <version>2.5.6</version>
+      <optional>true</optional>
+      <exclusions>
+        <exclusion>
+          <groupId>commons-logging</groupId>
+          <artifactId>commons-logging</artifactId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+
+    <dependency>
+      <groupId>org.springframework</groupId>
+      <artifactId>spring-webmvc-portlet</artifactId>
+      <version>2.5.6</version>
+      <optional>true</optional>
+      <exclusions>
+        <exclusion>
+          <groupId>org.springframework</groupId>
+          <artifactId>spring-webmvc</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>commons-logging</groupId>
+          <artifactId>commons-logging</artifactId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>4.6</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.easymock</groupId>
+      <artifactId>easymock</artifactId>
+      <version>2.5.1</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.easymock</groupId>
+      <artifactId>easymockclassextension</artifactId>
+      <version>2.4</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+
+</project>

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

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