You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by de...@apache.org on 2018/04/25 07:21:17 UTC

[cxf] branch master updated: fixed logging conflict for Spring Boot samples, now using java.util.logging as CXF does

This is an automated email from the ASF dual-hosted git repository.

deki pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cxf.git


The following commit(s) were added to refs/heads/master by this push:
     new c088cf0  fixed logging conflict for Spring Boot samples, now using java.util.logging as CXF does
c088cf0 is described below

commit c088cf00eefcd8ad0c0053fb3e0aa1ce70348136
Author: Dennis Kieselhorst <ma...@dekies.de>
AuthorDate: Wed Apr 25 09:20:35 2018 +0200

    fixed logging conflict for Spring Boot samples, now using java.util.logging as CXF does
---
 distribution/src/main/release/samples/jax_rs/spring_boot/pom.xml    | 6 ++++++
 .../release/samples/jax_rs/spring_boot_scan/application/pom.xml     | 6 ++++++
 2 files changed, 12 insertions(+)

diff --git a/distribution/src/main/release/samples/jax_rs/spring_boot/pom.xml b/distribution/src/main/release/samples/jax_rs/spring_boot/pom.xml
index 78d6a02..61d8c4d 100644
--- a/distribution/src/main/release/samples/jax_rs/spring_boot/pom.xml
+++ b/distribution/src/main/release/samples/jax_rs/spring_boot/pom.xml
@@ -28,6 +28,12 @@
             <groupId>org.apache.cxf</groupId>
             <artifactId>cxf-spring-boot-starter-jaxrs</artifactId>
             <version>${project.version}</version>
+            <exclusions><!-- CXF uses java.util.logging by default -->
+                <exclusion>
+                    <groupId>org.springframework.boot</groupId>
+                    <artifactId>spring-boot-starter-logging</artifactId>
+                </exclusion>
+            </exclusions>
         </dependency>
         <dependency>
             <groupId>org.webjars</groupId>
diff --git a/distribution/src/main/release/samples/jax_rs/spring_boot_scan/application/pom.xml b/distribution/src/main/release/samples/jax_rs/spring_boot_scan/application/pom.xml
index 00fb2eb..e894bb1 100644
--- a/distribution/src/main/release/samples/jax_rs/spring_boot_scan/application/pom.xml
+++ b/distribution/src/main/release/samples/jax_rs/spring_boot_scan/application/pom.xml
@@ -27,6 +27,12 @@
             <groupId>org.apache.cxf</groupId>
             <artifactId>cxf-spring-boot-starter-jaxrs</artifactId>
             <version>${project.version}</version>
+            <exclusions><!-- CXF uses java.util.logging by default -->
+                <exclusion>
+                    <groupId>org.springframework.boot</groupId>
+                    <artifactId>spring-boot-starter-logging</artifactId>
+                </exclusion>
+            </exclusions>
         </dependency>
         <dependency>
             <groupId>org.webjars</groupId>

-- 
To stop receiving notification emails like this one, please contact
deki@apache.org.