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 19:34:02 UTC

svn commit: r578587 - in /incubator/sling/trunk: scripting-jsp-taglib/pom.xml scripting-jsp/pom.xml

Author: fmeschbe
Date: Sun Sep 23 10:34:00 2007
New Revision: 578587

URL: http://svn.apache.org/viewvc?rev=578587&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/scripting-jsp-taglib/pom.xml
    incubator/sling/trunk/scripting-jsp/pom.xml

Modified: incubator/sling/trunk/scripting-jsp-taglib/pom.xml
URL: http://svn.apache.org/viewvc/incubator/sling/trunk/scripting-jsp-taglib/pom.xml?rev=578587&r1=578586&r2=578587&view=diff
==============================================================================
--- incubator/sling/trunk/scripting-jsp-taglib/pom.xml (original)
+++ incubator/sling/trunk/scripting-jsp-taglib/pom.xml Sun Sep 23 10:34:00 2007
@@ -52,6 +52,10 @@
     <build>
         <plugins>
             <plugin>
+                <groupId>org.apache.sling</groupId>
+                <artifactId>maven-sling-plugin</artifactId>
+            </plugin>
+            <plugin>
                 <groupId>org.apache.felix</groupId>
                 <artifactId>maven-bundle-plugin</artifactId>
                 <extensions>true</extensions>
@@ -102,6 +106,10 @@
         <dependency>
             <groupId>javax.servlet</groupId>
             <artifactId>servlet-api</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>javax.servlet</groupId>
+            <artifactId>jsp-api</artifactId>
         </dependency>
         <dependency>
             <groupId>commons-collections</groupId>

Modified: incubator/sling/trunk/scripting-jsp/pom.xml
URL: http://svn.apache.org/viewvc/incubator/sling/trunk/scripting-jsp/pom.xml?rev=578587&r1=578586&r2=578587&view=diff
==============================================================================
--- incubator/sling/trunk/scripting-jsp/pom.xml (original)
+++ incubator/sling/trunk/scripting-jsp/pom.xml Sun Sep 23 10:34:00 2007
@@ -120,6 +120,10 @@
             <artifactId>servlet-api</artifactId>
         </dependency>
         <dependency>
+            <groupId>javax.servlet</groupId>
+            <artifactId>jsp-api</artifactId>
+        </dependency>
+        <dependency>
             <groupId>commons-collections</groupId>
             <artifactId>commons-collections</artifactId>
         </dependency>