You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@rave.apache.org by at...@apache.org on 2011/06/17 01:36:14 UTC

svn commit: r1136742 - in /incubator/rave/trunk: pom.xml rave-portal/pom.xml

Author: ate
Date: Thu Jun 16 23:36:14 2011
New Revision: 1136742

URL: http://svn.apache.org/viewvc?rev=1136742&view=rev
Log:
RAVE-66: jstl-1.2 dependency cannot be resolved anymore from maven repository
See: http://issues.apache.org/jira/browse/RAVE-66
- fixed by updating to new/moved (!) jstl-1.2 dependency coordinates

Modified:
    incubator/rave/trunk/pom.xml
    incubator/rave/trunk/rave-portal/pom.xml

Modified: incubator/rave/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/rave/trunk/pom.xml?rev=1136742&r1=1136741&r2=1136742&view=diff
==============================================================================
--- incubator/rave/trunk/pom.xml (original)
+++ incubator/rave/trunk/pom.xml Thu Jun 16 23:36:14 2011
@@ -50,6 +50,8 @@
         <org.springframework.version>3.0.5.RELEASE</org.springframework.version>
         <jstl.version>1.2</jstl.version>
         <javax.servlet.version>2.5</javax.servlet.version>
+        <jsp-api.version>2.1</jsp-api.version>
+        <el-api.version>1.0</el-api.version>
         <org.slf4j.version>1.6.1</org.slf4j.version>
         <log4j.version>1.2.16</log4j.version>
         <junit.version>4.7</junit.version>
@@ -141,9 +143,9 @@
                 <version>${org.springframework.version}</version>
             </dependency>
             <dependency>
-                <groupId>javax.servlet</groupId>
-                <artifactId>jstl</artifactId>
-                <version>${jstl.version}</version>
+              <groupId>org.glassfish.web</groupId>
+              <artifactId>jstl-impl</artifactId>
+              <version>${jstl.version}</version>
             </dependency>
             <dependency>
                 <groupId>org.apache.openjpa</groupId>
@@ -248,18 +250,17 @@
             <version>${javax.servlet.version}</version>
             <scope>provided</scope>
         </dependency>
-
         <dependency>
-            <groupId>org.apache.tomcat</groupId>
-            <artifactId>el-api</artifactId>
-            <version>[1,)</version>
-            <scope>provided</scope>
+          <groupId>javax.servlet.jsp</groupId>
+          <artifactId>jsp-api</artifactId>
+          <version>${jsp-api.version}</version>
+          <scope>provided</scope>
         </dependency>
         <dependency>
-            <groupId>org.apache.tomcat</groupId>
-            <artifactId>jasper-el</artifactId>
-            <version>[1,)</version>
-            <scope>provided</scope>
+          <groupId>javax.el</groupId>
+          <artifactId>el-api</artifactId>
+          <version>${el-api.version}</version>
+          <scope>provided</scope>
         </dependency>
                 
         <!-- Exclude commons-logging by adding it as a provided dependency -->

Modified: incubator/rave/trunk/rave-portal/pom.xml
URL: http://svn.apache.org/viewvc/incubator/rave/trunk/rave-portal/pom.xml?rev=1136742&r1=1136741&r2=1136742&view=diff
==============================================================================
--- incubator/rave/trunk/rave-portal/pom.xml (original)
+++ incubator/rave/trunk/rave-portal/pom.xml Thu Jun 16 23:36:14 2011
@@ -134,8 +134,8 @@ if needed you can specify it on the comm
         
         <!-- JSTL -->
         <dependency>
-            <groupId>javax.servlet</groupId>
-            <artifactId>jstl</artifactId>
+          <groupId>org.glassfish.web</groupId>
+          <artifactId>jstl-impl</artifactId>
         </dependency>
 
         <!-- Logging -->
@@ -164,12 +164,6 @@ if needed you can specify it on the comm
             <groupId>commons-lang</groupId>
             <artifactId>commons-lang</artifactId>
         </dependency>
-        <dependency>
-            <groupId>javax.servlet.jsp</groupId>
-            <artifactId>jsp-api</artifactId>
-            <version>2.1</version>
-            <scope>provided</scope>
-        </dependency>
     </dependencies>
 
     <build>