You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by fm...@apache.org on 2007/09/23 17:56:38 UTC

svn commit: r578577 - /incubator/sling/trunk/parent/pom.xml

Author: fmeschbe
Date: Sun Sep 23 08:56:37 2007
New Revision: 578577

URL: http://svn.apache.org/viewvc?rev=578577&view=rev
Log:
SLING-20 jsp scripting depends on servlet api 2.4 but the 2.3 version is declared in the parent pom

Modified:
    incubator/sling/trunk/parent/pom.xml

Modified: incubator/sling/trunk/parent/pom.xml
URL: http://svn.apache.org/viewvc/incubator/sling/trunk/parent/pom.xml?rev=578577&r1=578576&r2=578577&view=diff
==============================================================================
--- incubator/sling/trunk/parent/pom.xml (original)
+++ incubator/sling/trunk/parent/pom.xml Sun Sep 23 08:56:37 2007
@@ -364,13 +364,6 @@
     <dependencyManagement>
         <dependencies>
             <dependency>
-                <groupId>javax.servlet</groupId>
-                <artifactId>servlet-api</artifactId>
-                <version>2.3</version>
-                <scope>provided</scope>
-            </dependency>
-
-            <dependency>
                 <groupId>org.osgi</groupId>
                 <artifactId>osgi_R4_core</artifactId>
                 <version>1.0</version>
@@ -435,6 +428,19 @@
                 <groupId>org.apache.sling</groupId>
                 <artifactId>sling-scripting-jsp-taglib</artifactId>
                 <version>2.0.0-incubator-SNAPSHOT</version>
+                <scope>provided</scope>
+            </dependency>
+
+            <dependency>
+                <groupId>javax.servlet</groupId>
+                <artifactId>servlet-api</artifactId>
+                <version>2.4</version>
+                <scope>provided</scope>
+            </dependency>
+            <dependency>
+                <groupId>javax.servlet</groupId>
+                <artifactId>jsp-api</artifactId>
+                <version>2.0</version>
                 <scope>provided</scope>
             </dependency>