You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ni...@apache.org on 2011/11/19 15:44:10 UTC

svn commit: r1203982 - in /camel/branches/camel-2.8.x: ./ components/camel-http/pom.xml components/camel-http4/pom.xml components/camel-jetty/pom.xml components/camel-servlet/pom.xml parent/pom.xml

Author: ningjiang
Date: Sat Nov 19 14:44:10 2011
New Revision: 1203982

URL: http://svn.apache.org/viewvc?rev=1203982&view=rev
Log:
Merged revisions 1203978 via svnmerge from 
https://svn.apache.org/repos/asf/camel/trunk

........
  r1203978 | ningjiang | 2011-11-19 21:44:33 +0800 (Sat, 19 Nov 2011) | 1 line
  
  CAMEL-4697 Using servlet API 2.5 across the camel components
........

Modified:
    camel/branches/camel-2.8.x/   (props changed)
    camel/branches/camel-2.8.x/components/camel-http/pom.xml
    camel/branches/camel-2.8.x/components/camel-http4/pom.xml
    camel/branches/camel-2.8.x/components/camel-jetty/pom.xml
    camel/branches/camel-2.8.x/components/camel-servlet/pom.xml
    camel/branches/camel-2.8.x/parent/pom.xml

Propchange: camel/branches/camel-2.8.x/
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Sat Nov 19 14:44:10 2011
@@ -1 +1 @@
-/camel/trunk:1202148,1202167,1202204-1202206,1202215,1202223,1202659,1202685,1203879
+/camel/trunk:1202148,1202167,1202204-1202206,1202215,1202223,1202659,1202685,1203879,1203978

Propchange: camel/branches/camel-2.8.x/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.

Modified: camel/branches/camel-2.8.x/components/camel-http/pom.xml
URL: http://svn.apache.org/viewvc/camel/branches/camel-2.8.x/components/camel-http/pom.xml?rev=1203982&r1=1203981&r2=1203982&view=diff
==============================================================================
--- camel/branches/camel-2.8.x/components/camel-http/pom.xml (original)
+++ camel/branches/camel-2.8.x/components/camel-http/pom.xml Sat Nov 19 14:44:10 2011
@@ -43,13 +43,13 @@
     </dependency>
     <dependency>
       <groupId>org.apache.geronimo.specs</groupId>
-      <artifactId>geronimo-servlet_2.4_spec</artifactId>
+      <artifactId>geronimo-servlet_2.5_spec</artifactId>
     </dependency>
 
     <dependency>
       <groupId>commons-httpclient</groupId>
       <artifactId>commons-httpclient</artifactId>
-      <version>3.1</version>
+      <version>${httpclient-version}</version>
     </dependency>
 
     <!-- testing -->

Modified: camel/branches/camel-2.8.x/components/camel-http4/pom.xml
URL: http://svn.apache.org/viewvc/camel/branches/camel-2.8.x/components/camel-http4/pom.xml?rev=1203982&r1=1203981&r2=1203982&view=diff
==============================================================================
--- camel/branches/camel-2.8.x/components/camel-http4/pom.xml (original)
+++ camel/branches/camel-2.8.x/components/camel-http4/pom.xml Sat Nov 19 14:44:10 2011
@@ -43,7 +43,7 @@
         </dependency>
         <dependency>
             <groupId>org.apache.geronimo.specs</groupId>
-            <artifactId>geronimo-servlet_2.4_spec</artifactId>
+            <artifactId>geronimo-servlet_2.5_spec</artifactId>
         </dependency>
         <dependency>
             <groupId>org.apache.httpcomponents</groupId>

Modified: camel/branches/camel-2.8.x/components/camel-jetty/pom.xml
URL: http://svn.apache.org/viewvc/camel/branches/camel-2.8.x/components/camel-jetty/pom.xml?rev=1203982&r1=1203981&r2=1203982&view=diff
==============================================================================
--- camel/branches/camel-2.8.x/components/camel-jetty/pom.xml (original)
+++ camel/branches/camel-2.8.x/components/camel-jetty/pom.xml Sat Nov 19 14:44:10 2011
@@ -46,6 +46,10 @@
             <artifactId>camel-http</artifactId>
         </dependency>
         <dependency>
+            <groupId>org.apache.geronimo.specs</groupId>
+            <artifactId>geronimo-servlet_2.5_spec</artifactId>
+        </dependency>
+        <dependency>
             <groupId>org.eclipse.jetty</groupId>
             <artifactId>jetty-server</artifactId>
         </dependency>
@@ -56,6 +60,12 @@
         <dependency>
             <groupId>org.eclipse.jetty</groupId>
             <artifactId>jetty-servlet</artifactId>
+            <exclusions>
+               <exclusion>
+      	           <groupId>javax.servlet</groupId>
+                    <artifactId>servlet-api</artifactId>
+               </exclusion>
+            </exclusions>
         </dependency>
         <dependency>
             <groupId>org.eclipse.jetty</groupId>

Modified: camel/branches/camel-2.8.x/components/camel-servlet/pom.xml
URL: http://svn.apache.org/viewvc/camel/branches/camel-2.8.x/components/camel-servlet/pom.xml?rev=1203982&r1=1203981&r2=1203982&view=diff
==============================================================================
--- camel/branches/camel-2.8.x/components/camel-servlet/pom.xml (original)
+++ camel/branches/camel-2.8.x/components/camel-servlet/pom.xml Sat Nov 19 14:44:10 2011
@@ -49,14 +49,14 @@
       <exclusions>
          <exclusion>
       	   <groupId>org.apache.geronimo.specs</groupId>
-           <artifactId>geronimo-servlet_2.4_spec</artifactId>
+           <artifactId>geronimo-servlet_2.5_spec</artifactId>
          </exclusion>
       </exclusions>
     </dependency>
     
     <dependency>
       <groupId>org.apache.geronimo.specs</groupId>
-      <artifactId>geronimo-servlet_2.4_spec</artifactId>
+      <artifactId>geronimo-servlet_2.5_spec</artifactId>
       <scope>provided</scope>
     </dependency>
 
@@ -78,6 +78,12 @@
     <dependency>
       <groupId>httpunit</groupId>
       <artifactId>httpunit</artifactId>
+      <exclusions>
+         <exclusion>
+      	   <groupId>javax.servlet</groupId>
+           <artifactId>servlet-api</artifactId>
+         </exclusion>
+      </exclusions>
       <scope>test</scope>
     </dependency>
     <dependency>

Modified: camel/branches/camel-2.8.x/parent/pom.xml
URL: http://svn.apache.org/viewvc/camel/branches/camel-2.8.x/parent/pom.xml?rev=1203982&r1=1203981&r2=1203982&view=diff
==============================================================================
--- camel/branches/camel-2.8.x/parent/pom.xml (original)
+++ camel/branches/camel-2.8.x/parent/pom.xml Sat Nov 19 14:44:10 2011
@@ -77,7 +77,7 @@
     <geronimo-jpa-spec-version>1.1.1</geronimo-jpa-spec-version>
     <geronimo-jsp-spec-version>1.0.1</geronimo-jsp-spec-version>
     <geronimo-jta-spec-version>1.1.1</geronimo-jta-spec-version>
-    <geronimo-servlet-spec-version>1.1.1</geronimo-servlet-spec-version>
+    <geronimo-servlet-spec-version>1.1.2</geronimo-servlet-spec-version>
     <groovy-version>1.8.4</groovy-version>
     <guiceyfruit-version>2.0</guiceyfruit-version>
     <h2-version>1.2.144</h2-version>
@@ -1034,7 +1034,7 @@
       </dependency>
       <dependency>
         <groupId>org.apache.geronimo.specs</groupId>
-        <artifactId>geronimo-servlet_2.4_spec</artifactId>
+        <artifactId>geronimo-servlet_2.5_spec</artifactId>
         <version>${geronimo-servlet-spec-version}</version>
       </dependency>