Author: apetrelli
Date: Thu Sep 17 19:17:18 2009
New Revision: 816337

URL: http://svn.apache.org/viewvc?rev=816337&view=rev
Log:
TILES-458
Added stubs for tiles-mvel and tiles-ognl modules.

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

Modified: tiles/framework/trunk/assembly/pom.xml
URL: 
http://svn.apache.org/viewvc/tiles/framework/trunk/assembly/pom.xml?rev=816337&r1=816336&r2=816337&view=diff
==============================================================================
--- tiles/framework/trunk/assembly/pom.xml (original)
+++ tiles/framework/trunk/assembly/pom.xml Thu Sep 17 19:17:18 2009
@@ -154,7 +154,6 @@
       <groupId>org.springframework</groupId>
       <artifactId>spring-webmvc-portlet</artifactId>
       <version>2.5.6</version>
-      <optional>true</optional>
       <exclusions>
         <exclusion>
           <groupId>org.springframework</groupId>

Modified: tiles/framework/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/tiles/framework/trunk/pom.xml?rev=816337&r1=816336&r2=816337&view=diff
==============================================================================
--- tiles/framework/trunk/pom.xml (original)
+++ tiles/framework/trunk/pom.xml Thu Sep 17 19:17:18 2009
@@ -3,9 +3,9 @@
 /*
  * $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
+ * Lice"tiles-ognl2/tiles-ognl"nsed to the Apache Software Foundation (ASF) 
under one
+ * or more contributor license agreements.  See the NOTICE 
file"tiles-ognl2/tiles-ognl"
+ * dist"tiles-ognl2/tiles-ognl"ributed 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
@@ -54,6 +54,8 @@
         <module>tiles-jsp</module>
         <module>tiles-freemarker</module>
         <module>tiles-velocity</module>
+        <module>tiles-mvel</module>
+        <module>tiles-ognl</module>
         <module>tiles-portlet</module>
         <module>tiles-compat</module>
         <module>tiles-extras</module>

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

Added: tiles/framework/trunk/tiles-mvel/pom.xml
URL: 
http://svn.apache.org/viewvc/tiles/framework/trunk/tiles-mvel/pom.xml?rev=816337&view=auto
==============================================================================
--- tiles/framework/trunk/tiles-mvel/pom.xml (added)
+++ tiles/framework/trunk/tiles-mvel/pom.xml Thu Sep 17 19:17:18 2009
@@ -0,0 +1,123 @@
+<?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-mvel</artifactId>
+  <packaging>jar</packaging>
+  <name>Tiles - MVEL support</name>
+  <description>Tiles MVEL support: Classes and tag libraries to use MVEL 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>org.mvel</groupId>
+      <artifactId>mvel2</artifactId>
+      <version>2.0.11</version>
+    </dependency>
+  </dependencies>
+
+</project>

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

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

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

Added: tiles/framework/trunk/tiles-ognl/pom.xml
URL: 
http://svn.apache.org/viewvc/tiles/framework/trunk/tiles-ognl/pom.xml?rev=816337&view=auto
==============================================================================
--- tiles/framework/trunk/tiles-ognl/pom.xml (added)
+++ tiles/framework/trunk/tiles-ognl/pom.xml Thu Sep 17 19:17:18 2009
@@ -0,0 +1,123 @@
+<?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-ognl</artifactId>
+  <packaging>jar</packaging>
+  <name>Tiles - OGNL support</name>
+  <description>Tiles OGNL support: Classes and tag libraries to use OGNL as an 
expression language in attribute expressions.</description>
+
+  <properties>
+       <tiles.osgi.symbolicName>org.apache.tiles.ognl</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>ognl</groupId>
+      <artifactId>ognl</artifactId>
+      <version>2.7.3</version>
+    </dependency>
+  </dependencies>
+
+</project>

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

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


Reply via email to