You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by jb...@apache.org on 2020/09/13 05:34:03 UTC

[servicemix-bundles] branch master updated: fix spring-security oauth2 bundles (#146)

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

jbonofre pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/servicemix-bundles.git


The following commit(s) were added to refs/heads/master by this push:
     new 4a7984f  fix spring-security oauth2 bundles (#146)
4a7984f is described below

commit 4a7984fa3583376118e52e0bfde5dc2b55a62207
Author: Arnaud Mergey <a_...@yahoo.fr>
AuthorDate: Sun Sep 13 07:29:30 2020 +0200

    fix spring-security oauth2 bundles (#146)
    
    * fix spring-security oauth2 bundles
    * Add import com.nimbusds.oauth2.sdk which is needed
    
    Co-authored-by:  <am...@gmail.com>
---
 spring-security-oauth2-client-5.3.3.RELEASE/pom.xml | 3 ++-
 spring-security-oauth2-core-5.3.3.RELEASE/pom.xml   | 4 +++-
 spring-security-oauth2-jose-5.3.3.RELEASE/pom.xml   | 3 ++-
 3 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/spring-security-oauth2-client-5.3.3.RELEASE/pom.xml b/spring-security-oauth2-client-5.3.3.RELEASE/pom.xml
index eba8f31..c4d8fd1 100644
--- a/spring-security-oauth2-client-5.3.3.RELEASE/pom.xml
+++ b/spring-security-oauth2-client-5.3.3.RELEASE/pom.xml
@@ -46,10 +46,11 @@
         <pkgArtifactId>spring-security-oauth2-client</pkgArtifactId>
         <pkgVersion>5.3.3.RELEASE</pkgVersion>
         <servicemix.osgi.export.pkg>
-            org.springframework.security.oauth2.client
+            org.springframework.security.oauth2.client*
         </servicemix.osgi.export.pkg>
         <servicemix.osgi.import.pkg>
             com.nimbusds*;resolution:=optional,
+            org.springframework.security.oauth2.core,
             *
         </servicemix.osgi.import.pkg>
     </properties>
diff --git a/spring-security-oauth2-core-5.3.3.RELEASE/pom.xml b/spring-security-oauth2-core-5.3.3.RELEASE/pom.xml
index bbb1a90..2f0170e 100644
--- a/spring-security-oauth2-core-5.3.3.RELEASE/pom.xml
+++ b/spring-security-oauth2-core-5.3.3.RELEASE/pom.xml
@@ -46,10 +46,12 @@
         <pkgArtifactId>spring-security-oauth2-core</pkgArtifactId>
         <pkgVersion>5.3.3.RELEASE</pkgVersion>
         <servicemix.osgi.export.pkg>
-            org.springframework.security.oauth2.core
+            org.springframework.security.oauth2.core*
         </servicemix.osgi.export.pkg>
         <servicemix.osgi.import.pkg>
             com.nimbusds*;resolution:=optional,
+            com.fasterxml.jackson.databind;resolution:=optional,
+            com.fasterxml.jackson.core;resolution:=optional,
             *
         </servicemix.osgi.import.pkg>
     </properties>
diff --git a/spring-security-oauth2-jose-5.3.3.RELEASE/pom.xml b/spring-security-oauth2-jose-5.3.3.RELEASE/pom.xml
index 4e0ea8b..0192ea1 100644
--- a/spring-security-oauth2-jose-5.3.3.RELEASE/pom.xml
+++ b/spring-security-oauth2-jose-5.3.3.RELEASE/pom.xml
@@ -46,9 +46,10 @@
         <pkgArtifactId>spring-security-oauth2-jose</pkgArtifactId>
         <pkgVersion>5.3.3.RELEASE</pkgVersion>
         <servicemix.osgi.export.pkg>
-            org.springframework.security.oauth2.jose
+            org.springframework.security.oauth2.j*
         </servicemix.osgi.export.pkg>
         <servicemix.osgi.import.pkg>
+            com.nimbusds.oauth2.sdk;resolution:=optional,
             com.nimbusds*;resolution:=optional,
             *
         </servicemix.osgi.import.pkg>