Return-Path: Delivered-To: apmail-cxf-commits-archive@www.apache.org Received: (qmail 44796 invoked from network); 15 Aug 2008 21:51:32 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 15 Aug 2008 21:51:32 -0000 Received: (qmail 51975 invoked by uid 500); 15 Aug 2008 21:51:30 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 51843 invoked by uid 500); 15 Aug 2008 21:51:29 -0000 Mailing-List: contact commits-help@cxf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cxf.apache.org Delivered-To: mailing list commits@cxf.apache.org Received: (qmail 51696 invoked by uid 99); 15 Aug 2008 21:51:29 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 15 Aug 2008 14:51:29 -0700 X-ASF-Spam-Status: No, hits=-1998.5 required=10.0 tests=ALL_TRUSTED,WEIRD_PORT X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 15 Aug 2008 21:50:27 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 779752388A3E; Fri, 15 Aug 2008 14:50:26 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r686382 [4/8] - in /cxf/trunk: distribution/src/main/release/bin/ distribution/src/main/release/samples/callback/ distribution/src/main/release/samples/configuration_interceptor/ distribution/src/main/release/samples/configuration_intercept... Date: Fri, 15 Aug 2008 21:50:23 -0000 To: commits@cxf.apache.org From: dkulp@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080815215026.779752388A3E@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Modified: cxf/trunk/distribution/src/main/release/samples/js_client/src/demo/hw/server/GreeterImpl.java URL: http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/js_client/src/demo/hw/server/GreeterImpl.java?rev=686382&r1=686381&r2=686382&view=diff ============================================================================== --- cxf/trunk/distribution/src/main/release/samples/js_client/src/demo/hw/server/GreeterImpl.java (original) +++ cxf/trunk/distribution/src/main/release/samples/js_client/src/demo/hw/server/GreeterImpl.java Fri Aug 15 14:50:21 2008 @@ -1,74 +1,74 @@ -/** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you under the Apache License, Version 2.0 (the - * "License"); you may not use this file except in compliance - * with the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ - -package demo.hw.server; - -import java.util.logging.Logger; -import org.apache.hello_world_soap_http.Greeter; -import org.apache.hello_world_soap_http.PingMeFault; -import org.apache.hello_world_soap_http.types.FaultDetail; - -@javax.jws.WebService(portName = "SoapPort", serviceName = "SOAPService", - targetNamespace = "http://apache.org/hello_world_soap_http", - endpointInterface = "org.apache.hello_world_soap_http.Greeter") - -public class GreeterImpl implements Greeter { - - private static final Logger LOG = - Logger.getLogger(GreeterImpl.class.getPackage().getName()); - - /* (non-Javadoc) - * @see org.apache.hello_world_soap_http.Greeter#greetMe(java.lang.String) - */ - public String greetMe(String me) { - LOG.info("Executing operation greetMe"); - System.out.println("Executing operation greetMe"); - System.out.println("Message received: " + me + "\n"); - return "Hello " + me; - } - - /* (non-Javadoc) - * @see org.apache.hello_world_soap_http.Greeter#greetMeOneWay(java.lang.String) - */ - public void greetMeOneWay(String me) { - LOG.info("Executing operation greetMeOneWay"); - System.out.println("Executing operation greetMeOneWay\n"); - System.out.println("Hello there " + me); - } - - /* (non-Javadoc) - * @see org.apache.hello_world_soap_http.Greeter#sayHi() - */ - public String sayHi() { - LOG.info("Executing operation sayHi"); - System.out.println("Executing operation sayHi\n"); - return "Bonjour"; - } - - public void pingMe() throws PingMeFault { - FaultDetail faultDetail = new FaultDetail(); - faultDetail.setMajor((short)2); - faultDetail.setMinor((short)1); - LOG.info("Executing operation pingMe, throwing PingMeFault exception"); - System.out.println("Executing operation pingMe, throwing PingMeFault exception\n"); - throw new PingMeFault("PingMeFault raised by server", faultDetail); - } - - -} +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +package demo.hw.server; + +import java.util.logging.Logger; +import org.apache.hello_world_soap_http.Greeter; +import org.apache.hello_world_soap_http.PingMeFault; +import org.apache.hello_world_soap_http.types.FaultDetail; + +@javax.jws.WebService(portName = "SoapPort", serviceName = "SOAPService", + targetNamespace = "http://apache.org/hello_world_soap_http", + endpointInterface = "org.apache.hello_world_soap_http.Greeter") + +public class GreeterImpl implements Greeter { + + private static final Logger LOG = + Logger.getLogger(GreeterImpl.class.getPackage().getName()); + + /* (non-Javadoc) + * @see org.apache.hello_world_soap_http.Greeter#greetMe(java.lang.String) + */ + public String greetMe(String me) { + LOG.info("Executing operation greetMe"); + System.out.println("Executing operation greetMe"); + System.out.println("Message received: " + me + "\n"); + return "Hello " + me; + } + + /* (non-Javadoc) + * @see org.apache.hello_world_soap_http.Greeter#greetMeOneWay(java.lang.String) + */ + public void greetMeOneWay(String me) { + LOG.info("Executing operation greetMeOneWay"); + System.out.println("Executing operation greetMeOneWay\n"); + System.out.println("Hello there " + me); + } + + /* (non-Javadoc) + * @see org.apache.hello_world_soap_http.Greeter#sayHi() + */ + public String sayHi() { + LOG.info("Executing operation sayHi"); + System.out.println("Executing operation sayHi\n"); + return "Bonjour"; + } + + public void pingMe() throws PingMeFault { + FaultDetail faultDetail = new FaultDetail(); + faultDetail.setMajor((short)2); + faultDetail.setMinor((short)1); + LOG.info("Executing operation pingMe, throwing PingMeFault exception"); + System.out.println("Executing operation pingMe, throwing PingMeFault exception\n"); + throw new PingMeFault("PingMeFault raised by server", faultDetail); + } + + +} Propchange: cxf/trunk/distribution/src/main/release/samples/js_client/src/demo/hw/server/GreeterImpl.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/trunk/distribution/src/main/release/samples/js_client/src/demo/hw/server/GreeterImpl.java ------------------------------------------------------------------------------ svn:keywords = Rev Date Modified: cxf/trunk/distribution/src/main/release/samples/js_client/src/demo/hw/server/Server.java URL: http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/js_client/src/demo/hw/server/Server.java?rev=686382&r1=686381&r2=686382&view=diff ============================================================================== --- cxf/trunk/distribution/src/main/release/samples/js_client/src/demo/hw/server/Server.java (original) +++ cxf/trunk/distribution/src/main/release/samples/js_client/src/demo/hw/server/Server.java Fri Aug 15 14:50:21 2008 @@ -1,41 +1,41 @@ -/** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you under the Apache License, Version 2.0 (the - * "License"); you may not use this file except in compliance - * with the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ - -package demo.hw.server; - -import javax.xml.ws.Endpoint; - -public class Server { - - protected Server() throws Exception { - System.out.println("Starting Server"); - Object implementor = new GreeterImpl(); - String address = "http://localhost:9000/SoapContext/SoapPort"; - Endpoint.publish(address, implementor); - } - - public static void main(String args[]) throws Exception { - new Server(); - System.out.println("Server ready..."); - - Thread.sleep(5 * 60 * 1000); - System.out.println("Server exiting"); - System.exit(0); - } -} +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +package demo.hw.server; + +import javax.xml.ws.Endpoint; + +public class Server { + + protected Server() throws Exception { + System.out.println("Starting Server"); + Object implementor = new GreeterImpl(); + String address = "http://localhost:9000/SoapContext/SoapPort"; + Endpoint.publish(address, implementor); + } + + public static void main(String args[]) throws Exception { + new Server(); + System.out.println("Server ready..."); + + Thread.sleep(5 * 60 * 1000); + System.out.println("Server exiting"); + System.exit(0); + } +} Propchange: cxf/trunk/distribution/src/main/release/samples/js_client/src/demo/hw/server/Server.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/trunk/distribution/src/main/release/samples/js_client/src/demo/hw/server/Server.java ------------------------------------------------------------------------------ svn:keywords = Rev Date Modified: cxf/trunk/distribution/src/main/release/samples/js_client/wsdl/cxf-servlet.xml URL: http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/js_client/wsdl/cxf-servlet.xml?rev=686382&r1=686381&r2=686382&view=diff ============================================================================== --- cxf/trunk/distribution/src/main/release/samples/js_client/wsdl/cxf-servlet.xml (original) +++ cxf/trunk/distribution/src/main/release/samples/js_client/wsdl/cxf-servlet.xml Fri Aug 15 14:50:21 2008 @@ -1,41 +1,41 @@ - - - - - - - - - - + + + + + + + + + + Propchange: cxf/trunk/distribution/src/main/release/samples/js_client/wsdl/cxf-servlet.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/trunk/distribution/src/main/release/samples/js_client/wsdl/cxf-servlet.xml ------------------------------------------------------------------------------ svn:keywords = Rev Date Propchange: cxf/trunk/distribution/src/main/release/samples/js_client/wsdl/cxf-servlet.xml ------------------------------------------------------------------------------ svn:mime-type = text/xml Modified: cxf/trunk/distribution/src/main/release/samples/js_client/wsdl/hello_world.wsdl URL: http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/js_client/wsdl/hello_world.wsdl?rev=686382&r1=686381&r2=686382&view=diff ============================================================================== --- cxf/trunk/distribution/src/main/release/samples/js_client/wsdl/hello_world.wsdl (original) +++ cxf/trunk/distribution/src/main/release/samples/js_client/wsdl/hello_world.wsdl Fri Aug 15 14:50:21 2008 @@ -1,181 +1,181 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Propchange: cxf/trunk/distribution/src/main/release/samples/js_client/wsdl/hello_world.wsdl ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/trunk/distribution/src/main/release/samples/js_client/wsdl/hello_world.wsdl ------------------------------------------------------------------------------ svn:keywords = Rev Date Propchange: cxf/trunk/distribution/src/main/release/samples/js_client/wsdl/hello_world.wsdl ------------------------------------------------------------------------------ svn:mime-type = text/xml Modified: cxf/trunk/distribution/src/main/release/samples/mtom/pom.xml URL: http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/mtom/pom.xml?rev=686382&r1=686381&r2=686382&view=diff ============================================================================== --- cxf/trunk/distribution/src/main/release/samples/mtom/pom.xml (original) +++ cxf/trunk/distribution/src/main/release/samples/mtom/pom.xml Fri Aug 15 14:50:21 2008 @@ -1,173 +1,173 @@ - - - 4.0.0 - org.apache.cxf.samples - mtom - 1.0 - - [2,) - - - src - - - maven-compiler-plugin - - 1.5 - 1.5 - - - - org.apache.cxf - cxf-codegen-plugin - LATEST - - - generate-sources - generate-sources - - - - ${basedir}/wsdl/mtom_xop.wsdl - - - - - wsdl2java - - - - - - maven-antrun-plugin - - - copyxmlfiles - generate-sources - - run - - - - - - - - - - - - - - server - - test - - - org.codehaus.mojo - exec-maven-plugin - - - test - - java - - - demo.mtom.server.Server - - ${basedir}/wsdl/mtom_xop.wsdl - - - - - - - - - - client - - test - - - org.codehaus.mojo - exec-maven-plugin - - - test - - java - - - demo.mtom.client.Client - - ${basedir}/wsdl/mtom_xop.wsdl - - - - - - - - - - snapshots - - - apache-snapshots - Apache SNAPSHOT Repository - http://people.apache.org/repo/m2-snapshot-repository/ - - true - - - - - java.net - http://download.java.net/maven/1/ - legacy - - - - - apache-plugin-snapshots - Apache Maven Plugin Snapshots - http://people.apache.org/repo/m2-snapshot-repository - - false - - - true - - - - - - - - - java.net - http://download.java.net/maven/1/ - legacy - - - - - - org.apache.cxf - cxf-rt-frontend-jaxws - ${cxf.version} - - - org.apache.cxf - cxf-rt-transports-http - ${cxf.version} - - - - org.apache.cxf - cxf-rt-transports-http-jetty - ${cxf.version} - - - + + + 4.0.0 + org.apache.cxf.samples + mtom + 1.0 + + [2,) + + + src + + + maven-compiler-plugin + + 1.5 + 1.5 + + + + org.apache.cxf + cxf-codegen-plugin + LATEST + + + generate-sources + generate-sources + + + + ${basedir}/wsdl/mtom_xop.wsdl + + + + + wsdl2java + + + + + + maven-antrun-plugin + + + copyxmlfiles + generate-sources + + run + + + + + + + + + + + + + + server + + test + + + org.codehaus.mojo + exec-maven-plugin + + + test + + java + + + demo.mtom.server.Server + + ${basedir}/wsdl/mtom_xop.wsdl + + + + + + + + + + client + + test + + + org.codehaus.mojo + exec-maven-plugin + + + test + + java + + + demo.mtom.client.Client + + ${basedir}/wsdl/mtom_xop.wsdl + + + + + + + + + + snapshots + + + apache-snapshots + Apache SNAPSHOT Repository + http://people.apache.org/repo/m2-snapshot-repository/ + + true + + + + + java.net + http://download.java.net/maven/1/ + legacy + + + + + apache-plugin-snapshots + Apache Maven Plugin Snapshots + http://people.apache.org/repo/m2-snapshot-repository + + false + + + true + + + + + + + + + java.net + http://download.java.net/maven/1/ + legacy + + + + + + org.apache.cxf + cxf-rt-frontend-jaxws + ${cxf.version} + + + org.apache.cxf + cxf-rt-transports-http + ${cxf.version} + + + + org.apache.cxf + cxf-rt-transports-http-jetty + ${cxf.version} + + + Propchange: cxf/trunk/distribution/src/main/release/samples/mtom/pom.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/trunk/distribution/src/main/release/samples/mtom/pom.xml ------------------------------------------------------------------------------ svn:keywords = Rev Date Propchange: cxf/trunk/distribution/src/main/release/samples/mtom/pom.xml ------------------------------------------------------------------------------ svn:mime-type = text/xml Modified: cxf/trunk/distribution/src/main/release/samples/restful_dispatch/pom.xml URL: http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/restful_dispatch/pom.xml?rev=686382&r1=686381&r2=686382&view=diff ============================================================================== --- cxf/trunk/distribution/src/main/release/samples/restful_dispatch/pom.xml (original) +++ cxf/trunk/distribution/src/main/release/samples/restful_dispatch/pom.xml Fri Aug 15 14:50:21 2008 @@ -1,164 +1,164 @@ - - - 4.0.0 - org.apache.cxf.samples - restful_dispatch - 1.0 - - [2,) - 3.1 - 0.8 - - - src - - - maven-compiler-plugin - - 1.5 - 1.5 - - - - maven-antrun-plugin - - - copyxmlfiles - generate-sources - - run - - - - - - - - - - - - - - - - server - - test - - - org.codehaus.mojo - exec-maven-plugin - - - test - - java - - - demo.restful.server.Server - - - - - - - - - client - - test - - - org.codehaus.mojo - exec-maven-plugin - - - test - - java - - - demo.restful.client.Client - - - - - - - - - snapshots - - - apache-snapshots - Apache SNAPSHOT Repository - http://people.apache.org/repo/m2-snapshot-repository/ - - true - - - - - java.net - http://download.java.net/maven/1/ - legacy - - - - - apache-plugin-snapshots - Apache Maven Plugin Snapshots - http://people.apache.org/repo/m2-snapshot-repository - - false - - - true - - - - - - - - - java.net - http://download.java.net/maven/1/ - legacy - - - - - org.apache.cxf - cxf-rt-frontend-jaxws - ${cxf.version} - - - org.apache.cxf - cxf-rt-transports-http - ${cxf.version} - - - - org.apache.cxf - cxf-rt-transports-http-jetty - ${cxf.version} - - - org.apache.cxf - cxf-rt-frontend-jaxrs - ${cxf.version} - - - commons-httpclient - commons-httpclient - ${httpclient.version} - - - javax.ws.rs - jsr311-api - ${jsr311.version} - - - + + + 4.0.0 + org.apache.cxf.samples + restful_dispatch + 1.0 + + [2,) + 3.1 + 0.8 + + + src + + + maven-compiler-plugin + + 1.5 + 1.5 + + + + maven-antrun-plugin + + + copyxmlfiles + generate-sources + + run + + + + + + + + + + + + + + + + server + + test + + + org.codehaus.mojo + exec-maven-plugin + + + test + + java + + + demo.restful.server.Server + + + + + + + + + client + + test + + + org.codehaus.mojo + exec-maven-plugin + + + test + + java + + + demo.restful.client.Client + + + + + + + + + snapshots + + + apache-snapshots + Apache SNAPSHOT Repository + http://people.apache.org/repo/m2-snapshot-repository/ + + true + + + + + java.net + http://download.java.net/maven/1/ + legacy + + + + + apache-plugin-snapshots + Apache Maven Plugin Snapshots + http://people.apache.org/repo/m2-snapshot-repository + + false + + + true + + + + + + + + + java.net + http://download.java.net/maven/1/ + legacy + + + + + org.apache.cxf + cxf-rt-frontend-jaxws + ${cxf.version} + + + org.apache.cxf + cxf-rt-transports-http + ${cxf.version} + + + + org.apache.cxf + cxf-rt-transports-http-jetty + ${cxf.version} + + + org.apache.cxf + cxf-rt-frontend-jaxrs + ${cxf.version} + + + commons-httpclient + commons-httpclient + ${httpclient.version} + + + javax.ws.rs + jsr311-api + ${jsr311.version} + + + Propchange: cxf/trunk/distribution/src/main/release/samples/restful_dispatch/pom.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/trunk/distribution/src/main/release/samples/restful_dispatch/pom.xml ------------------------------------------------------------------------------ svn:keywords = Rev Date Propchange: cxf/trunk/distribution/src/main/release/samples/restful_dispatch/pom.xml ------------------------------------------------------------------------------ svn:mime-type = text/xml Modified: cxf/trunk/distribution/src/main/release/samples/restful_http_binding/pom.xml URL: http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/restful_http_binding/pom.xml?rev=686382&r1=686381&r2=686382&view=diff ============================================================================== --- cxf/trunk/distribution/src/main/release/samples/restful_http_binding/pom.xml (original) +++ cxf/trunk/distribution/src/main/release/samples/restful_http_binding/pom.xml Fri Aug 15 14:50:21 2008 @@ -1,179 +1,179 @@ - - - 4.0.0 - org.apache.cxf.samples - restful_http_binding - 1.0 - - [2,) - 3.1 - 0.8 - 1.0.1 - 1.0-alpha-4 - - - src - - - maven-compiler-plugin - - 1.5 - 1.5 - - - - maven-antrun-plugin - - - copyxmlfiles - generate-sources - - run - - - - - - - - - - - - - - server - - test - - - org.codehaus.mojo - exec-maven-plugin - - - test - - java - - - demo.restful.server.Server - - - - - - - - - client - - test - - - org.codehaus.mojo - exec-maven-plugin - - - test - - java - - - demo.restful.client.Client - - - - - - - - - snapshots - - - apache-snapshots - Apache SNAPSHOT Repository - http://people.apache.org/repo/m2-snapshot-repository/ - - true - - - - - java.net - http://download.java.net/maven/1/ - legacy - - - - - apache-plugin-snapshots - Apache Maven Plugin Snapshots - http://people.apache.org/repo/m2-snapshot-repository - - false - - - true - - - - - - - - - java.net - http://download.java.net/maven/1/ - legacy - - - - - org.apache.cxf - cxf-rt-frontend-jaxws - ${cxf.version} - - - org.apache.cxf - cxf-rt-transports-http - ${cxf.version} - - - - org.apache.cxf - cxf-rt-transports-http-jetty - ${cxf.version} - - - org.apache.cxf - cxf-rt-frontend-jaxrs - ${cxf.version} - - - org.apache.cxf - cxf-rt-bindings-http - ${cxf.version} - - - commons-httpclient - commons-httpclient - ${httpclient.version} - - - javax.ws.rs - jsr311-api - ${jsr311.version} - - - org.codehaus.jettison - jettison - ${jettison.version} - - - org.codehaus.jra - jra - ${jra.version} - - - + + + 4.0.0 + org.apache.cxf.samples + restful_http_binding + 1.0 + + [2,) + 3.1 + 0.8 + 1.0.1 + 1.0-alpha-4 + + + src + + + maven-compiler-plugin + + 1.5 + 1.5 + + + + maven-antrun-plugin + + + copyxmlfiles + generate-sources + + run + + + + + + + + + + + + + + server + + test + + + org.codehaus.mojo + exec-maven-plugin + + + test + + java + + + demo.restful.server.Server + + + + + + + + + client + + test + + + org.codehaus.mojo + exec-maven-plugin + + + test + + java + + + demo.restful.client.Client + + + + + + + + + snapshots + + + apache-snapshots + Apache SNAPSHOT Repository + http://people.apache.org/repo/m2-snapshot-repository/ + + true + + + + + java.net + http://download.java.net/maven/1/ + legacy + + + + + apache-plugin-snapshots + Apache Maven Plugin Snapshots + http://people.apache.org/repo/m2-snapshot-repository + + false + + + true + + + + + + + + + java.net + http://download.java.net/maven/1/ + legacy + + + + + org.apache.cxf + cxf-rt-frontend-jaxws + ${cxf.version} + + + org.apache.cxf + cxf-rt-transports-http + ${cxf.version} + + + + org.apache.cxf + cxf-rt-transports-http-jetty + ${cxf.version} + + + org.apache.cxf + cxf-rt-frontend-jaxrs + ${cxf.version} + + + org.apache.cxf + cxf-rt-bindings-http + ${cxf.version} + + + commons-httpclient + commons-httpclient + ${httpclient.version} + + + javax.ws.rs + jsr311-api + ${jsr311.version} + + + org.codehaus.jettison + jettison + ${jettison.version} + + + org.codehaus.jra + jra + ${jra.version} + + + Propchange: cxf/trunk/distribution/src/main/release/samples/restful_http_binding/pom.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/trunk/distribution/src/main/release/samples/restful_http_binding/pom.xml ------------------------------------------------------------------------------ svn:keywords = Rev Date Propchange: cxf/trunk/distribution/src/main/release/samples/restful_http_binding/pom.xml ------------------------------------------------------------------------------ svn:mime-type = text/xml Modified: cxf/trunk/distribution/src/main/release/samples/soap_header/pom.xml URL: http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/soap_header/pom.xml?rev=686382&r1=686381&r2=686382&view=diff ============================================================================== --- cxf/trunk/distribution/src/main/release/samples/soap_header/pom.xml (original) +++ cxf/trunk/distribution/src/main/release/samples/soap_header/pom.xml Fri Aug 15 14:50:21 2008 @@ -1,156 +1,156 @@ - - - 4.0.0 - org.apache.cxf.samples - soap_header - 1.0 - - [2,) - - - src - - - maven-compiler-plugin - - 1.5 - 1.5 - - - - org.apache.cxf - cxf-codegen-plugin - LATEST - - - generate-sources - generate-sources - - - - ${basedir}/wsdl/soap_header.wsdl - - - - - wsdl2java - - - - - - - - - server - - test - - - org.codehaus.mojo - exec-maven-plugin - - - test - - java - - - demo.soap_header.server.Server - - ${basedir}/wsdl/soap_header.wsdl - - - - - - - - - - client - - test - - - org.codehaus.mojo - exec-maven-plugin - - - test - - java - - - demo.soap_header.client.Client - - ${basedir}/wsdl/soap_header.wsdl - - - - - - - - - - snapshots - - - apache-snapshots - Apache SNAPSHOT Repository - http://people.apache.org/repo/m2-snapshot-repository/ - - true - - - - - java.net - http://download.java.net/maven/1/ - legacy - - - - - apache-plugin-snapshots - Apache Maven Plugin Snapshots - http://people.apache.org/repo/m2-snapshot-repository - - false - - - true - - - - - - - - - java.net - http://download.java.net/maven/1/ - legacy - - - - - - org.apache.cxf - cxf-rt-frontend-jaxws - ${cxf.version} - - - org.apache.cxf - cxf-rt-transports-http - ${cxf.version} - - - - org.apache.cxf - cxf-rt-transports-http-jetty - ${cxf.version} - - - + + + 4.0.0 + org.apache.cxf.samples + soap_header + 1.0 + + [2,) + + + src + + + maven-compiler-plugin + + 1.5 + 1.5 + + + + org.apache.cxf + cxf-codegen-plugin + LATEST + + + generate-sources + generate-sources + + + + ${basedir}/wsdl/soap_header.wsdl + + + + + wsdl2java + + + + + + + + + server + + test + + + org.codehaus.mojo + exec-maven-plugin + + + test + + java + + + demo.soap_header.server.Server + + ${basedir}/wsdl/soap_header.wsdl + + + + + + + + + + client + + test + + + org.codehaus.mojo + exec-maven-plugin + + + test + + java + + + demo.soap_header.client.Client + + ${basedir}/wsdl/soap_header.wsdl + + + + + + + + + + snapshots + + + apache-snapshots + Apache SNAPSHOT Repository + http://people.apache.org/repo/m2-snapshot-repository/ + + true + + + + + java.net + http://download.java.net/maven/1/ + legacy + + + + + apache-plugin-snapshots + Apache Maven Plugin Snapshots + http://people.apache.org/repo/m2-snapshot-repository + + false + + + true + + + + + + + + + java.net + http://download.java.net/maven/1/ + legacy + + + + + + org.apache.cxf + cxf-rt-frontend-jaxws + ${cxf.version} + + + org.apache.cxf + cxf-rt-transports-http + ${cxf.version} + + + + org.apache.cxf + cxf-rt-transports-http-jetty + ${cxf.version} + + + Propchange: cxf/trunk/distribution/src/main/release/samples/soap_header/pom.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/trunk/distribution/src/main/release/samples/soap_header/pom.xml ------------------------------------------------------------------------------ svn:keywords = Rev Date Propchange: cxf/trunk/distribution/src/main/release/samples/soap_header/pom.xml ------------------------------------------------------------------------------ svn:mime-type = text/xml