Modified: cxf/trunk/distribution/src/main/release/samples/jax_rs/spring_security/src/main/java/demo/jaxrs/service/SecurityExceptionMapper.java URL: http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/jax_rs/spring_security/src/main/java/demo/jaxrs/service/SecurityExceptionMapper.java?rev=1173027&r1=1172988&r2=1173027&view=diff ============================================================================== --- cxf/trunk/distribution/src/main/release/samples/jax_rs/spring_security/src/main/java/demo/jaxrs/service/SecurityExceptionMapper.java (original) +++ cxf/trunk/distribution/src/main/release/samples/jax_rs/spring_security/src/main/java/demo/jaxrs/service/SecurityExceptionMapper.java Tue Sep 20 08:46:04 2011 @@ -1,33 +1,33 @@ -/** - * 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.jaxrs.service; - -import javax.ws.rs.core.Response; -import javax.ws.rs.ext.ExceptionMapper; - -import org.springframework.security.AccessDeniedException; - -public class SecurityExceptionMapper implements ExceptionMapper<AccessDeniedException> { - - public Response toResponse(AccessDeniedException exception) { - return Response.status(Response.Status.FORBIDDEN).build(); - } - -} +/** + * 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.jaxrs.service; + +import javax.ws.rs.core.Response; +import javax.ws.rs.ext.ExceptionMapper; + +import org.springframework.security.AccessDeniedException; + +public class SecurityExceptionMapper implements ExceptionMapper<AccessDeniedException> { + + public Response toResponse(AccessDeniedException exception) { + return Response.status(Response.Status.FORBIDDEN).build(); + } + +}
Modified: cxf/trunk/distribution/src/main/release/samples/jax_rs/spring_security/src/main/java/demo/jaxrs/servlet/Server.java URL: http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/jax_rs/spring_security/src/main/java/demo/jaxrs/servlet/Server.java?rev=1173027&r1=1172988&r2=1173027&view=diff ============================================================================== --- cxf/trunk/distribution/src/main/release/samples/jax_rs/spring_security/src/main/java/demo/jaxrs/servlet/Server.java (original) +++ cxf/trunk/distribution/src/main/release/samples/jax_rs/spring_security/src/main/java/demo/jaxrs/servlet/Server.java Tue Sep 20 08:46:04 2011 @@ -1,64 +1,64 @@ -/** - * 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.jaxrs.servlet; - -import org.eclipse.jetty.server.Connector; -import org.eclipse.jetty.server.Handler; -import org.eclipse.jetty.server.handler.DefaultHandler; -import org.eclipse.jetty.server.handler.HandlerCollection; -import org.eclipse.jetty.server.nio.SelectChannelConnector; -import org.eclipse.jetty.webapp.WebAppContext; - -public class Server { - - protected Server() throws Exception { - System.out.println("Starting Server"); - - /** - * Important: This code simply starts up a servlet container and adds - * the web application in src/webapp to it. Normally you would be using - * Jetty or Tomcat and have the webapp packaged as a WAR. This is simply - * as a convenience so you do not need to configure your servlet - * container to see CXF in action! - */ - org.eclipse.jetty.server.Server server = new org.eclipse.jetty.server.Server(); - - SelectChannelConnector connector = new SelectChannelConnector(); - connector.setPort(9002); - server.setConnectors(new Connector[] {connector}); - - WebAppContext webappcontext = new WebAppContext(); - webappcontext.setContextPath("/"); - - webappcontext.setWar("webapp"); - - HandlerCollection handlers = new HandlerCollection(); - handlers.setHandlers(new Handler[] {webappcontext, new DefaultHandler()}); - - server.setHandler(handlers); - server.start(); - System.out.println("Server ready..."); - server.join(); - } - - public static void main(String args[]) throws Exception { - new Server(); - } - -} +/** + * 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.jaxrs.servlet; + +import org.eclipse.jetty.server.Connector; +import org.eclipse.jetty.server.Handler; +import org.eclipse.jetty.server.handler.DefaultHandler; +import org.eclipse.jetty.server.handler.HandlerCollection; +import org.eclipse.jetty.server.nio.SelectChannelConnector; +import org.eclipse.jetty.webapp.WebAppContext; + +public class Server { + + protected Server() throws Exception { + System.out.println("Starting Server"); + + /** + * Important: This code simply starts up a servlet container and adds + * the web application in src/webapp to it. Normally you would be using + * Jetty or Tomcat and have the webapp packaged as a WAR. This is simply + * as a convenience so you do not need to configure your servlet + * container to see CXF in action! + */ + org.eclipse.jetty.server.Server server = new org.eclipse.jetty.server.Server(); + + SelectChannelConnector connector = new SelectChannelConnector(); + connector.setPort(9002); + server.setConnectors(new Connector[] {connector}); + + WebAppContext webappcontext = new WebAppContext(); + webappcontext.setContextPath("/"); + + webappcontext.setWar("webapp"); + + HandlerCollection handlers = new HandlerCollection(); + handlers.setHandlers(new Handler[] {webappcontext, new DefaultHandler()}); + + server.setHandler(handlers); + server.start(); + System.out.println("Server ready..."); + server.join(); + } + + public static void main(String args[]) throws Exception { + new Server(); + } + +} Modified: cxf/trunk/distribution/src/main/release/samples/jax_server_aegis_client/pom.xml URL: http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/jax_server_aegis_client/pom.xml?rev=1173027&r1=1173026&r2=1173027&view=diff ============================================================================== --- cxf/trunk/distribution/src/main/release/samples/jax_server_aegis_client/pom.xml (original) +++ cxf/trunk/distribution/src/main/release/samples/jax_server_aegis_client/pom.xml Tue Sep 20 08:46:04 2011 @@ -32,7 +32,6 @@ <cxf.version>${project.version}</cxf.version> </properties> <build> - <sourceDirectory>src</sourceDirectory> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> Modified: cxf/trunk/distribution/src/main/release/samples/jaxws_async/pom.xml URL: http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/jaxws_async/pom.xml?rev=1173027&r1=1173026&r2=1173027&view=diff ============================================================================== --- cxf/trunk/distribution/src/main/release/samples/jaxws_async/pom.xml (original) +++ cxf/trunk/distribution/src/main/release/samples/jaxws_async/pom.xml Tue Sep 20 08:46:04 2011 @@ -33,7 +33,6 @@ <cxf.version>${project.version}</cxf.version> </properties> <build> - <sourceDirectory>src</sourceDirectory> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> Modified: cxf/trunk/distribution/src/main/release/samples/jaxws_dispatch_provider/pom.xml URL: http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/jaxws_dispatch_provider/pom.xml?rev=1173027&r1=1173026&r2=1173027&view=diff ============================================================================== --- cxf/trunk/distribution/src/main/release/samples/jaxws_dispatch_provider/pom.xml (original) +++ cxf/trunk/distribution/src/main/release/samples/jaxws_dispatch_provider/pom.xml Tue Sep 20 08:46:04 2011 @@ -32,7 +32,6 @@ <cxf.version>${project.version}</cxf.version> </properties> <build> - <sourceDirectory>src</sourceDirectory> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> @@ -113,12 +112,12 @@ </goals> <configuration> <tasks> - <copy file="${basedir}/src/demo/hwDispatch/client/GreetMeDocLiteralReq1.xml" todir="${basedir}/target/classes/demo/hwDispatch/client" /> - <copy file="${basedir}/src/demo/hwDispatch/client/GreetMeDocLiteralReq2.xml" todir="${basedir}/target/classes/demo/hwDispatch/client" /> - <copy file="${basedir}/src/demo/hwDispatch/client/GreetMeDocLiteralReq3.xml" todir="${basedir}/target/classes/demo/hwDispatch/client" /> - <copy file="${basedir}/src/demo/hwDispatch/server/GreetMeDocLiteralResp1.xml" todir="${basedir}/target/classes/demo/hwDispatch/server" /> - <copy file="${basedir}/src/demo/hwDispatch/server/GreetMeDocLiteralResp2.xml" todir="${basedir}/target/classes/demo/hwDispatch/server" /> - <copy file="${basedir}/src/demo/hwDispatch/server/GreetMeDocLiteralResp3.xml" todir="${basedir}/target/classes/demo/hwDispatch/server" /> + <copy file="${basedir}/src/main/java/demo/hwDispatch/client/GreetMeDocLiteralReq1.xml" todir="${basedir}/target/classes/demo/hwDispatch/client" /> + <copy file="${basedir}/src/main/java/demo/hwDispatch/client/GreetMeDocLiteralReq2.xml" todir="${basedir}/target/classes/demo/hwDispatch/client" /> + <copy file="${basedir}/src/main/java/demo/hwDispatch/client/GreetMeDocLiteralReq3.xml" todir="${basedir}/target/classes/demo/hwDispatch/client" /> + <copy file="${basedir}/src/main/java/demo/hwDispatch/server/GreetMeDocLiteralResp1.xml" todir="${basedir}/target/classes/demo/hwDispatch/server" /> + <copy file="${basedir}/src/main/java/demo/hwDispatch/server/GreetMeDocLiteralResp2.xml" todir="${basedir}/target/classes/demo/hwDispatch/server" /> + <copy file="${basedir}/src/main/java/demo/hwDispatch/server/GreetMeDocLiteralResp3.xml" todir="${basedir}/target/classes/demo/hwDispatch/server" /> Modified: cxf/trunk/distribution/src/main/release/samples/jaxws_handlers/pom.xml URL: http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/jaxws_handlers/pom.xml?rev=1173027&r1=1173026&r2=1173027&view=diff ============================================================================== --- cxf/trunk/distribution/src/main/release/samples/jaxws_handlers/pom.xml (original) +++ cxf/trunk/distribution/src/main/release/samples/jaxws_handlers/pom.xml Tue Sep 20 08:46:04 2011 @@ -33,7 +33,6 @@ </properties> <build> - <sourceDirectory>src</sourceDirectory> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> @@ -74,7 +73,7 @@ </goals> <configuration> <tasks> - <copy file="${basedir}/src/demo/handlers/common/demo_handlers.xml" todir="${basedir}/target/classes/demo/handlers/common" /> + <copy file="${basedir}/src/main/java/demo/handlers/common/demo_handlers.xml" todir="${basedir}/target/classes/demo/handlers/common" /> </tasks> </configuration> </execution> Modified: cxf/trunk/distribution/src/main/release/samples/jms-spec-demo/pom.xml URL: http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/jms-spec-demo/pom.xml?rev=1173027&r1=1173026&r2=1173027&view=diff ============================================================================== --- cxf/trunk/distribution/src/main/release/samples/jms-spec-demo/pom.xml (original) +++ cxf/trunk/distribution/src/main/release/samples/jms-spec-demo/pom.xml Tue Sep 20 08:46:04 2011 @@ -33,7 +33,6 @@ <cxf.version>${project.version}</cxf.version> </properties> <build> - <sourceDirectory>src</sourceDirectory> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> Modified: cxf/trunk/distribution/src/main/release/samples/jms_pubsub/pom.xml URL: http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/jms_pubsub/pom.xml?rev=1173027&r1=1173026&r2=1173027&view=diff ============================================================================== --- cxf/trunk/distribution/src/main/release/samples/jms_pubsub/pom.xml (original) +++ cxf/trunk/distribution/src/main/release/samples/jms_pubsub/pom.xml Tue Sep 20 08:46:04 2011 @@ -32,7 +32,6 @@ <cxf.version>${project.version}</cxf.version> </properties> <build> - <sourceDirectory>src</sourceDirectory> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> Modified: cxf/trunk/distribution/src/main/release/samples/jms_queue/pom.xml URL: http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/jms_queue/pom.xml?rev=1173027&r1=1173026&r2=1173027&view=diff ============================================================================== --- cxf/trunk/distribution/src/main/release/samples/jms_queue/pom.xml (original) +++ cxf/trunk/distribution/src/main/release/samples/jms_queue/pom.xml Tue Sep 20 08:46:04 2011 @@ -33,7 +33,6 @@ <cxf.version>${project.version}</cxf.version> </properties> <build> - <sourceDirectory>src</sourceDirectory> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> Modified: cxf/trunk/distribution/src/main/release/samples/js_browser_client_java_first/pom.xml URL: http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/js_browser_client_java_first/pom.xml?rev=1173027&r1=1173026&r2=1173027&view=diff ============================================================================== --- cxf/trunk/distribution/src/main/release/samples/js_browser_client_java_first/pom.xml (original) +++ cxf/trunk/distribution/src/main/release/samples/js_browser_client_java_first/pom.xml Tue Sep 20 08:46:04 2011 @@ -33,7 +33,6 @@ <cxf.version>${project.version}</cxf.version> </properties> <build> - <sourceDirectory>src</sourceDirectory> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> Modified: cxf/trunk/distribution/src/main/release/samples/js_browser_client_simple/pom.xml URL: http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/js_browser_client_simple/pom.xml?rev=1173027&r1=1173026&r2=1173027&view=diff ============================================================================== --- cxf/trunk/distribution/src/main/release/samples/js_browser_client_simple/pom.xml (original) +++ cxf/trunk/distribution/src/main/release/samples/js_browser_client_simple/pom.xml Tue Sep 20 08:46:04 2011 @@ -33,7 +33,6 @@ <cxf.version>${project.version}</cxf.version> </properties> <build> - <sourceDirectory>src</sourceDirectory> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> Modified: cxf/trunk/distribution/src/main/release/samples/js_client/pom.xml URL: http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/js_client/pom.xml?rev=1173027&r1=1173026&r2=1173027&view=diff ============================================================================== --- cxf/trunk/distribution/src/main/release/samples/js_client/pom.xml (original) +++ cxf/trunk/distribution/src/main/release/samples/js_client/pom.xml Tue Sep 20 08:46:04 2011 @@ -33,7 +33,6 @@ <cxf.version>${project.version}</cxf.version> </properties> <build> - <sourceDirectory>src</sourceDirectory> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> Modified: cxf/trunk/distribution/src/main/release/samples/logbrowser/pom.xml URL: http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/logbrowser/pom.xml?rev=1173027&r1=1173026&r2=1173027&view=diff ============================================================================== --- cxf/trunk/distribution/src/main/release/samples/logbrowser/pom.xml (original) +++ cxf/trunk/distribution/src/main/release/samples/logbrowser/pom.xml Tue Sep 20 08:46:04 2011 @@ -62,7 +62,6 @@ </profile> </profiles> <build> - <sourceDirectory>src</sourceDirectory> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> 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=1173027&r1=1173026&r2=1173027&view=diff ============================================================================== --- cxf/trunk/distribution/src/main/release/samples/mtom/pom.xml (original) +++ cxf/trunk/distribution/src/main/release/samples/mtom/pom.xml Tue Sep 20 08:46:04 2011 @@ -34,7 +34,6 @@ </properties> <build> - <sourceDirectory>src</sourceDirectory> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> @@ -75,7 +74,7 @@ </goals> <configuration> <tasks> - <copy file="${basedir}/src/demo/mtom/client/me.bmp" todir="${basedir}/target/classes/demo/mtom/client" /> + <copy file="${basedir}/src/main/java/demo/mtom/client/me.bmp" todir="${basedir}/target/classes/demo/mtom/client" /> </tasks> </configuration> </execution> 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=1173027&r1=1173026&r2=1173027&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 Tue Sep 20 08:46:04 2011 @@ -33,7 +33,6 @@ <httpclient.version>3.1</httpclient.version> </properties> <build> - <sourceDirectory>src</sourceDirectory> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> @@ -53,9 +52,9 @@ </goals> <configuration> <tasks> - <copy file="${basedir}/src/demo/restful/client/CustomerJohnReq.xml" todir="${basedir}/target/classes/demo/restful/client" /> - <copy file="${basedir}/src/demo/restful/server/CustomerJohnResp.xml" todir="${basedir}/target/classes/demo/restful/server" /> - <copy file="${basedir}/src/demo/restful/server/CustomerAllResp.xml" todir="${basedir}/target/classes/demo/restful/server" /> + <copy file="${basedir}/src/main/java/demo/restful/client/CustomerJohnReq.xml" todir="${basedir}/target/classes/demo/restful/client" /> + <copy file="${basedir}/src/main/java/demo/restful/server/CustomerJohnResp.xml" todir="${basedir}/target/classes/demo/restful/server" /> + <copy file="${basedir}/src/main/java/demo/restful/server/CustomerAllResp.xml" todir="${basedir}/target/classes/demo/restful/server" /> </tasks> </configuration> </execution> 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=1173027&r1=1173026&r2=1173027&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 Tue Sep 20 08:46:04 2011 @@ -34,7 +34,6 @@ <httpclient.version>3.1</httpclient.version> </properties> <build> - <sourceDirectory>src</sourceDirectory> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> 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=1173027&r1=1173026&r2=1173027&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 Tue Sep 20 08:46:04 2011 @@ -33,7 +33,6 @@ <cxf.version>${project.version}</cxf.version> </properties> <build> - <sourceDirectory>src</sourceDirectory> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> Modified: cxf/trunk/distribution/src/main/release/samples/ws_addressing/pom.xml URL: http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/ws_addressing/pom.xml?rev=1173027&r1=1173026&r2=1173027&view=diff ============================================================================== --- cxf/trunk/distribution/src/main/release/samples/ws_addressing/pom.xml (original) +++ cxf/trunk/distribution/src/main/release/samples/ws_addressing/pom.xml Tue Sep 20 08:46:04 2011 @@ -33,7 +33,6 @@ <cxf.version>${project.version}</cxf.version> </properties> <build> - <sourceDirectory>src</sourceDirectory> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> @@ -74,8 +73,8 @@ </goals> <configuration> <tasks> - <copy file="${basedir}/src/demo/ws_addressing/client/client.xml" todir="${basedir}/target/classes/demo/ws_addressing/client" /> - <copy file="${basedir}/src/demo/ws_addressing/server/server.xml" todir="${basedir}/target/classes/demo/ws_addressing/server" /> + <copy file="${basedir}/src/main/java/demo/ws_addressing/client/client.xml" todir="${basedir}/target/classes/demo/ws_addressing/client" /> + <copy file="${basedir}/src/main/java/demo/ws_addressing/server/server.xml" todir="${basedir}/target/classes/demo/ws_addressing/server" /> </tasks> </configuration> </execution> Modified: cxf/trunk/distribution/src/main/release/samples/ws_policy/pom.xml URL: http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/ws_policy/pom.xml?rev=1173027&r1=1173026&r2=1173027&view=diff ============================================================================== --- cxf/trunk/distribution/src/main/release/samples/ws_policy/pom.xml (original) +++ cxf/trunk/distribution/src/main/release/samples/ws_policy/pom.xml Tue Sep 20 08:46:04 2011 @@ -33,7 +33,6 @@ <cxf.version>${project.version}</cxf.version> </properties> <build> - <sourceDirectory>src</sourceDirectory> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> @@ -74,8 +73,8 @@ </goals> <configuration> <tasks> - <copy file="${basedir}/src/demo/ws_policy/client/client.xml" todir="${basedir}/target/classes/demo/ws_policy/client" /> - <copy file="${basedir}/src/demo/ws_policy/server/server.xml" todir="${basedir}/target/classes/demo/ws_policy/server" /> + <copy file="${basedir}/src/main/java/demo/ws_policy/client/client.xml" todir="${basedir}/target/classes/demo/ws_policy/client" /> + <copy file="${basedir}/src/main/java/demo/ws_policy/server/server.xml" todir="${basedir}/target/classes/demo/ws_policy/server" /> <copy file="${basedir}/addr-external.xml" todir="${basedir}/target/classes/" /> </tasks> </configuration> Modified: cxf/trunk/distribution/src/main/release/samples/ws_rm/pom.xml URL: http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/ws_rm/pom.xml?rev=1173027&r1=1173026&r2=1173027&view=diff ============================================================================== --- cxf/trunk/distribution/src/main/release/samples/ws_rm/pom.xml (original) +++ cxf/trunk/distribution/src/main/release/samples/ws_rm/pom.xml Tue Sep 20 08:46:04 2011 @@ -32,7 +32,6 @@ <cxf.version>${project.version}</cxf.version> </properties> <build> - <sourceDirectory>src</sourceDirectory> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> @@ -73,8 +72,8 @@ </goals> <configuration> <tasks> - <copy file="${basedir}/src/demo/ws_rm/client/ws_rm.xml" todir="${basedir}/target/classes/demo/ws_rm/client" /> - <copy file="${basedir}/src/demo/ws_rm/server/ws_rm.xml" todir="${basedir}/target/classes/demo/ws_rm/server" /> + <copy file="${basedir}/src/main/java/demo/ws_rm/client/ws_rm.xml" todir="${basedir}/target/classes/demo/ws_rm/client" /> + <copy file="${basedir}/src/main/java/demo/ws_rm/server/ws_rm.xml" todir="${basedir}/target/classes/demo/ws_rm/server" /> </tasks> </configuration> </execution> Modified: cxf/trunk/distribution/src/main/release/samples/wsdl_first_dynamic_client/pom.xml URL: http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/wsdl_first_dynamic_client/pom.xml?rev=1173027&r1=1173026&r2=1173027&view=diff ============================================================================== --- cxf/trunk/distribution/src/main/release/samples/wsdl_first_dynamic_client/pom.xml (original) +++ cxf/trunk/distribution/src/main/release/samples/wsdl_first_dynamic_client/pom.xml Tue Sep 20 08:46:04 2011 @@ -33,7 +33,6 @@ </properties> <build> <defaultGoal>install</defaultGoal> - <sourceDirectory>src</sourceDirectory> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> Modified: cxf/trunk/distribution/src/main/release/samples/wsdl_first_https/pom.xml URL: http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/wsdl_first_https/pom.xml?rev=1173027&r1=1173026&r2=1173027&view=diff ============================================================================== --- cxf/trunk/distribution/src/main/release/samples/wsdl_first_https/pom.xml (original) +++ cxf/trunk/distribution/src/main/release/samples/wsdl_first_https/pom.xml Tue Sep 20 08:46:04 2011 @@ -33,7 +33,6 @@ <cxf.version>${project.version}</cxf.version> </properties> <build> - <sourceDirectory>src</sourceDirectory> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> @@ -74,9 +73,9 @@ </goals> <configuration> <tasks> - <copy file="${basedir}/src/demo/hw_https/server/CherryServer.xml" todir="${basedir}/target/classes/demo/hw_https/server" /> - <copy file="${basedir}/src/demo/hw_https/client/WibbleClient.xml" todir="${basedir}/target/classes/demo/hw_https/client" /> - <copy file="${basedir}/src/demo/hw_https/client/InsecureClient.xml" todir="${basedir}/target/classes/demo/hw_https/client" /> + <copy file="${basedir}/src/main/java/demo/hw_https/server/CherryServer.xml" todir="${basedir}/target/classes/demo/hw_https/server" /> + <copy file="${basedir}/src/main/java/demo/hw_https/client/WibbleClient.xml" todir="${basedir}/target/classes/demo/hw_https/client" /> + <copy file="${basedir}/src/main/java/demo/hw_https/client/InsecureClient.xml" todir="${basedir}/target/classes/demo/hw_https/client" /> <copy todir="${basedir}/target/classes/certs"> <fileset dir="${basedir}/certs" /> </copy> Modified: cxf/trunk/distribution/src/main/release/samples/wsdl_first_pure_xml/pom.xml URL: http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/wsdl_first_pure_xml/pom.xml?rev=1173027&r1=1173026&r2=1173027&view=diff ============================================================================== --- cxf/trunk/distribution/src/main/release/samples/wsdl_first_pure_xml/pom.xml (original) +++ cxf/trunk/distribution/src/main/release/samples/wsdl_first_pure_xml/pom.xml Tue Sep 20 08:46:04 2011 @@ -32,7 +32,6 @@ <cxf.version>${project.version}</cxf.version> </properties> <build> - <sourceDirectory>src</sourceDirectory> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> Modified: cxf/trunk/distribution/src/main/release/samples/wsdl_first_rpclit/pom.xml URL: http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/wsdl_first_rpclit/pom.xml?rev=1173027&r1=1173026&r2=1173027&view=diff ============================================================================== --- cxf/trunk/distribution/src/main/release/samples/wsdl_first_rpclit/pom.xml (original) +++ cxf/trunk/distribution/src/main/release/samples/wsdl_first_rpclit/pom.xml Tue Sep 20 08:46:04 2011 @@ -34,7 +34,6 @@ </properties> <build> - <sourceDirectory>src</sourceDirectory> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> Modified: cxf/trunk/distribution/src/main/release/samples/wsdl_first_soap12/pom.xml URL: http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/wsdl_first_soap12/pom.xml?rev=1173027&r1=1173026&r2=1173027&view=diff ============================================================================== --- cxf/trunk/distribution/src/main/release/samples/wsdl_first_soap12/pom.xml (original) +++ cxf/trunk/distribution/src/main/release/samples/wsdl_first_soap12/pom.xml Tue Sep 20 08:46:04 2011 @@ -32,7 +32,6 @@ <cxf.version>${project.version}</cxf.version> </properties> <build> - <sourceDirectory>src</sourceDirectory> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> Modified: cxf/trunk/distribution/src/main/release/samples/wsdl_first_xml_wrapped/pom.xml URL: http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/wsdl_first_xml_wrapped/pom.xml?rev=1173027&r1=1173026&r2=1173027&view=diff ============================================================================== --- cxf/trunk/distribution/src/main/release/samples/wsdl_first_xml_wrapped/pom.xml (original) +++ cxf/trunk/distribution/src/main/release/samples/wsdl_first_xml_wrapped/pom.xml Tue Sep 20 08:46:04 2011 @@ -33,7 +33,6 @@ <cxf.version>${project.version}</cxf.version> </properties> <build> - <sourceDirectory>src</sourceDirectory> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId>
