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/08/30 09:25:33 UTC

[cxf] branch master updated: replace old with new logging interceptor

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 7c7186c  replace old with new logging interceptor
7c7186c is described below

commit 7c7186c506e662ed0512dc47cdf58caa2ff2eafb
Author: Dennis Kieselhorst <de...@apache.org>
AuthorDate: Thu Aug 30 11:25:12 2018 +0200

    replace old with new logging interceptor
---
 distribution/src/main/release/samples/jax_rs/big_query/pom.xml     | 7 ++++++-
 .../big_query/src/main/java/demo/jaxrs/server/BigQueryServer.java  | 2 +-
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/distribution/src/main/release/samples/jax_rs/big_query/pom.xml b/distribution/src/main/release/samples/jax_rs/big_query/pom.xml
index b5cdd7b..7fca109 100644
--- a/distribution/src/main/release/samples/jax_rs/big_query/pom.xml
+++ b/distribution/src/main/release/samples/jax_rs/big_query/pom.xml
@@ -56,7 +56,12 @@
             <groupId>org.apache.cxf</groupId>
             <artifactId>cxf-rt-rs-security-sso-oidc</artifactId>
             <version>3.3.0-SNAPSHOT</version>
-        </dependency> 
+        </dependency>
+        <dependency>
+            <groupId>org.apache.cxf</groupId>
+            <artifactId>cxf-rt-features-logging</artifactId>
+            <version>3.3.0-SNAPSHOT</version>
+        </dependency>
         <dependency>
             <groupId>javax.ws.rs</groupId>
             <artifactId>javax.ws.rs-api</artifactId>
diff --git a/distribution/src/main/release/samples/jax_rs/big_query/src/main/java/demo/jaxrs/server/BigQueryServer.java b/distribution/src/main/release/samples/jax_rs/big_query/src/main/java/demo/jaxrs/server/BigQueryServer.java
index e625d03..3e5c0ff 100644
--- a/distribution/src/main/release/samples/jax_rs/big_query/src/main/java/demo/jaxrs/server/BigQueryServer.java
+++ b/distribution/src/main/release/samples/jax_rs/big_query/src/main/java/demo/jaxrs/server/BigQueryServer.java
@@ -28,7 +28,7 @@ import java.util.List;
 
 import javax.ws.rs.core.MediaType;
 
-import org.apache.cxf.interceptor.LoggingInInterceptor;
+import org.apache.cxf.ext.logging.LoggingInInterceptor;
 import org.apache.cxf.jaxrs.client.WebClient;
 import org.apache.cxf.jaxrs.provider.json.JsonMapObjectProvider;
 import org.apache.cxf.rs.security.jose.common.JoseType;