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 2008/10/05 17:56:59 UTC

svn commit: r701812 - /tiles/framework/trunk/assembly/pom.xml

Author: apetrelli
Date: Sun Oct  5 08:56:58 2008
New Revision: 701812

URL: http://svn.apache.org/viewvc?rev=701812&view=rev
Log:
TILES-311
Fixed binary release.

Modified:
    tiles/framework/trunk/assembly/pom.xml

Modified: tiles/framework/trunk/assembly/pom.xml
URL: http://svn.apache.org/viewvc/tiles/framework/trunk/assembly/pom.xml?rev=701812&r1=701811&r2=701812&view=diff
==============================================================================
--- tiles/framework/trunk/assembly/pom.xml (original)
+++ tiles/framework/trunk/assembly/pom.xml Sun Oct  5 08:56:58 2008
@@ -162,6 +162,10 @@
               <groupId>org.apache.tiles</groupId>
               <artifactId>tiles-core</artifactId>
           </exclusion>
+          <exclusion>
+              <groupId>javax.servlet</groupId>
+              <artifactId>servlet-api</artifactId>
+          </exclusion>
       </exclusions>
     </dependency>
 
@@ -242,6 +246,10 @@
               <groupId>org.apache.tiles</groupId>
               <artifactId>tiles-core</artifactId>
           </exclusion>
+          <exclusion>
+              <groupId>javax.servlet</groupId>
+              <artifactId>servlet-api</artifactId>
+          </exclusion>
       </exclusions>
     </dependency>
 
@@ -285,6 +293,14 @@
     </dependency>
 
     <dependency>
+      <groupId>javax.el</groupId>
+      <artifactId>el-api</artifactId>
+      <version>1.0</version>
+      <scope>runtime</scope>
+      <optional>true</optional>
+    </dependency>
+
+    <dependency>
         <groupId>org.apache.tomcat</groupId>
         <artifactId>jasper-el</artifactId>
         <version>6.0.16</version>
@@ -319,5 +335,12 @@
     </dependency>
 
   </dependencies>
+  <repositories>
+    <repository>
+      <id>java_net</id>
+      <url>http://download.java.net/maven/1/</url>
+      <layout>legacy</layout>
+    </repository>
+  </repositories>
 
 </project>