Author: apetrelli
Date: Thu Sep 17 19:42:20 2009
New Revision: 816353

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

Added:
    tiles/framework/trunk/tiles-el/   (with props)
    tiles/framework/trunk/tiles-el/pom.xml   (with props)
    tiles/framework/trunk/tiles-el/src/
    tiles/framework/trunk/tiles-el/src/main/
    tiles/framework/trunk/tiles-el/src/main/java/
    tiles/framework/trunk/tiles-el/src/main/resources/
    tiles/framework/trunk/tiles-el/src/test/
    tiles/framework/trunk/tiles-el/src/test/java/
    tiles/framework/trunk/tiles-el/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=816353&r1=816352&r2=816353&view=diff
==============================================================================
--- tiles/framework/trunk/pom.xml (original)
+++ tiles/framework/trunk/pom.xml Thu Sep 17 19:42:20 2009
@@ -54,6 +54,7 @@
         <module>tiles-jsp</module>
         <module>tiles-freemarker</module>
         <module>tiles-velocity</module>
+        <module>tiles-el</module>
         <module>tiles-mvel</module>
         <module>tiles-ognl</module>
         <module>tiles-portlet</module>

Propchange: tiles/framework/trunk/tiles-el/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Thu Sep 17 19:42:20 2009
@@ -0,0 +1,2 @@
+.*
+target

Added: tiles/framework/trunk/tiles-el/pom.xml
URL: 
http://svn.apache.org/viewvc/tiles/framework/trunk/tiles-el/pom.xml?rev=816353&view=auto
==============================================================================
--- tiles/framework/trunk/tiles-el/pom.xml (added)
+++ tiles/framework/trunk/tiles-el/pom.xml Thu Sep 17 19:42:20 2009
@@ -0,0 +1,133 @@
+<?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-el</artifactId>
+  <packaging>jar</packaging>
+  <name>Tiles - EL support</name>
+  <description>Tiles EL (Expression Language) support: Classes and tag 
libraries to use EL as an expression language in attribute expressions. 
</description>
+
+  <properties>
+    <tiles.osgi.symbolicName>org.apache.tiles.mvel</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-core</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>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>
+
+    <dependency>
+      <groupId>javax.el</groupId>
+      <artifactId>el-api</artifactId>
+      <version>1.0</version>
+      <scope>provided</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.tomcat</groupId>
+      <artifactId>jasper-el</artifactId>
+      <version>6.0.20</version>
+      <scope>compile</scope>
+      <optional>true</optional>
+      <exclusions>
+        <exclusion>
+          <groupId>org.apache.tomcat</groupId>
+          <artifactId>el-api</artifactId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+  </dependencies>
+
+</project>

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

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


Reply via email to