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:30:48 UTC

svn commit: r578586 - /incubator/sling/trunk/jasper-sling/pom.xml

Author: fmeschbe
Date: Sun Sep 23 10:30:47 2007
New Revision: 578586

URL: http://svn.apache.org/viewvc?rev=578586&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/jasper-sling/pom.xml

Modified: incubator/sling/trunk/jasper-sling/pom.xml
URL: http://svn.apache.org/viewvc/incubator/sling/trunk/jasper-sling/pom.xml?rev=578586&r1=578585&r2=578586&view=diff
==============================================================================
--- incubator/sling/trunk/jasper-sling/pom.xml (original)
+++ incubator/sling/trunk/jasper-sling/pom.xml Sun Sep 23 10:30:47 2007
@@ -91,30 +91,23 @@
             <groupId>commons-el</groupId>
             <artifactId>commons-el</artifactId>
             <version>1.0</version>
-            <scope>compile</scope>
         </dependency>
         <dependency>
             <groupId>javax.servlet</groupId>
             <artifactId>servlet-api</artifactId>
-            <version>2.4</version>
-            <scope>compile</scope>
         </dependency>
         <dependency>
             <groupId>javax.servlet</groupId>
             <artifactId>jsp-api</artifactId>
-            <version>2.0</version>
-            <scope>compile</scope>
         </dependency>
 
         <dependency>
             <groupId>org.slf4j</groupId>
             <artifactId>jcl104-over-slf4j</artifactId>
-            <scope>compile</scope>
         </dependency>
         <dependency>
             <groupId>org.apache.commons</groupId>
             <artifactId>commons-io</artifactId>
-            <scope>compile</scope>
         </dependency>
 
         <dependency>
@@ -129,7 +122,7 @@
         <dependency>
             <groupId>org.slf4j</groupId>
             <artifactId>slf4j-simple</artifactId>
-            <scope>runtime</scope>
+            <scope>test</scope>
         </dependency>
     </dependencies>
 </project>