[jbossws-commits] JBossWS SVN: r16466 - in stack/cxf/branches/jbossws-cxf-3.1.2: modules/server and 1 other directory.

jbossws-commits at lists.jboss.org jbossws-commits at lists.jboss.org
Thu Jul 12 13:13:10 EDT 2012


Author: alessio.soldano at jboss.com
Date: 2012-07-12 13:13:10 -0400 (Thu, 12 Jul 2012)
New Revision: 16466

Modified:
   stack/cxf/branches/jbossws-cxf-3.1.2/modules/server/pom.xml
   stack/cxf/branches/jbossws-cxf-3.1.2/pom.xml
Log:
Adding provided scope dependency to servlet-api as per EAP5 build needs


Modified: stack/cxf/branches/jbossws-cxf-3.1.2/modules/server/pom.xml
===================================================================
--- stack/cxf/branches/jbossws-cxf-3.1.2/modules/server/pom.xml	2012-07-12 17:03:56 UTC (rev 16465)
+++ stack/cxf/branches/jbossws-cxf-3.1.2/modules/server/pom.xml	2012-07-12 17:13:10 UTC (rev 16466)
@@ -158,6 +158,10 @@
       <artifactId>jaxws-api</artifactId>
     </dependency>
     <dependency>
+      <groupId>javax.servlet</groupId>
+      <artifactId>servlet-api</artifactId>
+    </dependency>
+    <dependency>
       <groupId>org.jboss.javaee</groupId>
       <artifactId>jboss-ejb-api</artifactId>
     </dependency>

Modified: stack/cxf/branches/jbossws-cxf-3.1.2/pom.xml
===================================================================
--- stack/cxf/branches/jbossws-cxf-3.1.2/pom.xml	2012-07-12 17:03:56 UTC (rev 16465)
+++ stack/cxf/branches/jbossws-cxf-3.1.2/pom.xml	2012-07-12 17:13:10 UTC (rev 16466)
@@ -74,6 +74,7 @@
     <commons.logging.version>1.1.1</commons.logging.version>
     <log4j.version>1.2.14</log4j.version>
     <saaj.api.version>1.3</saaj.api.version>
+    <servlet.api.version>2.5</servlet.api.version>
     <velocity.version>1.5</velocity.version>
     <xmlsec.version>1.5.1</xmlsec.version>
     <wss4j.version>1.5.12-patch-01</wss4j.version>
@@ -480,6 +481,12 @@
       
       <!-- jboss provided -->
       <dependency>
+        <groupId>javax.servlet</groupId>
+        <artifactId>servlet-api</artifactId>
+        <version>${servlet.api.version}</version>
+        <scope>provided</scope>
+      </dependency>
+      <dependency>
         <groupId>org.jboss</groupId>
         <artifactId>jboss-common-core</artifactId>
         <version>${jboss.common.core.version}</version>



More information about the jbossws-commits mailing list