You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by il...@apache.org on 2016/10/07 11:58:06 UTC

syncope git commit: Upgrading JAX-RS specs to 2.1-m01 as per CXF 3.2.0-SNAPSHOT + removing deprecation

Repository: syncope
Updated Branches:
  refs/heads/master 3b7b13965 -> bbfd6ea48


Upgrading JAX-RS specs to 2.1-m01 as per CXF 3.2.0-SNAPSHOT + removing deprecation


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

Branch: refs/heads/master
Commit: bbfd6ea48a9795cae2933f4ef906ced4ccb8ce49
Parents: 3b7b139
Author: Francesco Chicchiricc� <il...@apache.org>
Authored: Fri Oct 7 13:58:00 2016 +0200
Committer: Francesco Chicchiricc� <il...@apache.org>
Committed: Fri Oct 7 13:58:00 2016 +0200

----------------------------------------------------------------------
 client/lib/pom.xml                                            | 2 +-
 .../apache/syncope/client/lib/SyncopeClientFactoryBean.java   | 2 +-
 pom.xml                                                       | 7 ++++++-
 3 files changed, 8 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/syncope/blob/bbfd6ea4/client/lib/pom.xml
----------------------------------------------------------------------
diff --git a/client/lib/pom.xml b/client/lib/pom.xml
index 39d98da..1499665 100644
--- a/client/lib/pom.xml
+++ b/client/lib/pom.xml
@@ -49,7 +49,7 @@ under the License.
     </dependency>
     <dependency>
       <groupId>org.apache.cxf</groupId>
-      <artifactId>cxf-rt-databinding-jaxb</artifactId>
+      <artifactId>cxf-rt-features-logging</artifactId>
     </dependency>
     
     <dependency>

http://git-wip-us.apache.org/repos/asf/syncope/blob/bbfd6ea4/client/lib/src/main/java/org/apache/syncope/client/lib/SyncopeClientFactoryBean.java
----------------------------------------------------------------------
diff --git a/client/lib/src/main/java/org/apache/syncope/client/lib/SyncopeClientFactoryBean.java b/client/lib/src/main/java/org/apache/syncope/client/lib/SyncopeClientFactoryBean.java
index 6ea7b4f..1a30d54 100644
--- a/client/lib/src/main/java/org/apache/syncope/client/lib/SyncopeClientFactoryBean.java
+++ b/client/lib/src/main/java/org/apache/syncope/client/lib/SyncopeClientFactoryBean.java
@@ -30,7 +30,7 @@ import javax.ws.rs.core.MediaType;
 import javax.xml.bind.Marshaller;
 import org.apache.commons.lang3.StringUtils;
 import org.apache.cxf.feature.Feature;
-import org.apache.cxf.feature.LoggingFeature;
+import org.apache.cxf.ext.logging.LoggingFeature;
 import org.apache.cxf.jaxrs.provider.JAXBElementProvider;
 import org.apache.cxf.staxutils.DocumentDepthProperties;
 import org.apache.syncope.common.lib.policy.AbstractPolicyTO;

http://git-wip-us.apache.org/repos/asf/syncope/blob/bbfd6ea4/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 0a11450..7893f8a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -502,7 +502,7 @@ under the License.
       <dependency>
         <groupId>javax.ws.rs</groupId>
         <artifactId>javax.ws.rs-api</artifactId>
-        <version>2.0.1</version>
+        <version>2.1-m01</version>
       </dependency>
       <dependency>
         <groupId>org.apache.geronimo.javamail</groupId>
@@ -558,6 +558,11 @@ under the License.
         <artifactId>cxf-rt-rs-client</artifactId>
         <version>${cxf.version}</version>
       </dependency>
+      <dependency>
+        <groupId>org.apache.cxf</groupId>
+        <artifactId>cxf-rt-features-logging</artifactId>
+        <version>${cxf.version}</version>
+      </dependency>
       <!-- /CXF -->
 
       <!-- Swagger -->