You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2010/09/26 12:55:15 UTC

svn commit: r1001412 - /camel/trunk/examples/camel-example-cxf-proxy/pom.xml

Author: davsclaus
Date: Sun Sep 26 10:55:15 2010
New Revision: 1001412

URL: http://svn.apache.org/viewvc?rev=1001412&view=rev
Log:
cxf proxy example

Modified:
    camel/trunk/examples/camel-example-cxf-proxy/pom.xml

Modified: camel/trunk/examples/camel-example-cxf-proxy/pom.xml
URL: http://svn.apache.org/viewvc/camel/trunk/examples/camel-example-cxf-proxy/pom.xml?rev=1001412&r1=1001411&r2=1001412&view=diff
==============================================================================
--- camel/trunk/examples/camel-example-cxf-proxy/pom.xml (original)
+++ camel/trunk/examples/camel-example-cxf-proxy/pom.xml Sun Sep 26 10:55:15 2010
@@ -49,11 +49,6 @@
 
         <dependency>
             <groupId>org.apache.camel</groupId>
-            <artifactId>camel-soap</artifactId>
-        </dependency>
-
-        <dependency>
-            <groupId>org.apache.camel</groupId>
             <artifactId>camel-cxf</artifactId>
         </dependency>
 
@@ -63,12 +58,12 @@
             <artifactId>cxf-rt-core</artifactId>
             <version>${cxf-version}</version>
         </dependency>
+        <!-- used by the real web service -->
         <dependency>
             <groupId>org.apache.cxf</groupId>
             <artifactId>cxf-rt-frontend-jaxws</artifactId>
             <version>${cxf-version}</version>
         </dependency>
-
         <!-- regular http transport -->
         <dependency>
             <groupId>org.apache.cxf</groupId>
@@ -143,14 +138,6 @@
                 <groupId>org.mortbay.jetty</groupId>
                 <artifactId>jetty-maven-plugin</artifactId>
                 <version>${jetty-version}</version>
-                <configuration>
-                    <connectors>
-                        <connector implementation="org.eclipse.jetty.server.nio.SelectChannelConnector">
-                            <port>9080</port>
-                            <maxIdleTime>60000</maxIdleTime>
-                        </connector>
-                    </connectors>
-                </configuration>
             </plugin>
 
         </plugins>