You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by se...@apache.org on 2016/07/08 15:56:20 UTC

cxf git commit: Removing another redundant Spring context

Repository: cxf
Updated Branches:
  refs/heads/3.1.x-fixes a95fdec3f -> 6eaa2bd9f


Removing another redundant Spring context


Project: http://git-wip-us.apache.org/repos/asf/cxf/repo
Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/6eaa2bd9
Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/6eaa2bd9
Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/6eaa2bd9

Branch: refs/heads/3.1.x-fixes
Commit: 6eaa2bd9f48718d241ef6e779285c65a800862a8
Parents: a95fdec
Author: Sergey Beryozkin <sb...@gmail.com>
Authored: Fri Jul 8 16:51:27 2016 +0100
Committer: Sergey Beryozkin <sb...@gmail.com>
Committed: Fri Jul 8 16:56:09 2016 +0100

----------------------------------------------------------------------
 .../main/resources/sample/rs/client/client.xml  | 33 --------------------
 1 file changed, 33 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cxf/blob/6eaa2bd9/distribution/src/main/release/samples/jax_rs/spring_boot_scan/application/src/main/resources/sample/rs/client/client.xml
----------------------------------------------------------------------
diff --git a/distribution/src/main/release/samples/jax_rs/spring_boot_scan/application/src/main/resources/sample/rs/client/client.xml b/distribution/src/main/release/samples/jax_rs/spring_boot_scan/application/src/main/resources/sample/rs/client/client.xml
deleted file mode 100644
index 7ba6911..0000000
--- a/distribution/src/main/release/samples/jax_rs/spring_boot_scan/application/src/main/resources/sample/rs/client/client.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-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.
--->
-<beans xmlns="http://www.springframework.org/schema/beans" 
-       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
-       xmlns:jaxrs="http://cxf.apache.org/jaxrs-client"
-       xsi:schemaLocation="http://www.springframework.org/schema/beans
-                           http://www.springframework.org/schema/beans/spring-beans.xsd
-                           http://cxf.apache.org/jaxrs-client http://cxf.apache.org/schemas/jaxrs-client.xsd">
-    <jaxrs:client id="helloServiceClient" 
-        address="http://localhost:8080/services/helloservice/" 
-        serviceClass="sample.rs.service.HelloService"/>
-        
-    <bean class="sample.rs.client.SampleRestClientApplication">
-        <property name="helloService" ref="helloServiceClient"/>
-    </bean>
-</beans>