Author: husted
Date: Thu Aug 31 20:16:43 2006
New Revision: 439152

URL: http://svn.apache.org/viewvc?rev=439152&view=rev
Log:
WW-1427 struts2-api-2.0.0-SNAPSHOT.pom has servlet-api listed with "compile" 
scope, should be provided, reported by Matt Raible. 

Modified:
    struts/struts2/trunk/api/pom.xml

Modified: struts/struts2/trunk/api/pom.xml
URL: 
http://svn.apache.org/viewvc/struts/struts2/trunk/api/pom.xml?rev=439152&r1=439151&r2=439152&view=diff
==============================================================================
--- struts/struts2/trunk/api/pom.xml (original)
+++ struts/struts2/trunk/api/pom.xml Thu Aug 31 20:16:43 2006
@@ -13,9 +13,10 @@
     <name>Struts 2 API</name>
     <dependencies>
         <dependency>
-            <groupId>javax.servlet</groupId>
-            <artifactId>servlet-api</artifactId>
-            <version>2.4</version>
+           <groupId>javax.servlet</groupId>
+           <artifactId>servlet-api</artifactId>
+           <version>2.4</version>
+           <scope>provided</scope>
         </dependency>
         <dependency>
             <groupId>junit</groupId>


Reply via email to