[java-oidc-common] branch main updated: JCOMOIDC-9 - Surface the oidc-common library as an IdP plugin
Phil Smart
philip.smart at jisc.ac.uk
Wed Jan 20 17:27:33 UTC 2021
This is an automated email from the git hooks/post-receive script.
philsmart pushed a commit to branch main
in repository java-oidc-common.
View the commit online:
http://git.shibboleth.net/view/?p=java-oidc-common.git;a=commit;h=3f53f4e8cd6fd2b01c5c359cb05b67aa2afdab3f
The following commit(s) were added to refs/heads/main by this push:
new 3f53f4e JCOMOIDC-9 - Surface the oidc-common library as an IdP plugin
3f53f4e is described below
commit 3f53f4e8cd6fd2b01c5c359cb05b67aa2afdab3f
Author: Phil Smart <philip.smart at jisc.ac.uk>
AuthorDate: Wed Jan 20 17:27:31 2021 +0000
JCOMOIDC-9 - Surface the oidc-common library as an IdP plugin
Add Bill of Materials
https://issues.shibboleth.net/jira/browse/JCOMOIDC-9
---
oidc-common-attribute-api/pom.xml | 4 ---
oidc-common-bom/pom.xml | 71 +++++++++++++++++++++++++++++++++++++++
pom.xml | 12 ++++---
3 files changed, 78 insertions(+), 9 deletions(-)
diff --git a/oidc-common-attribute-api/pom.xml b/oidc-common-attribute-api/pom.xml
index c4b6a3b..5ab0fb3 100644
--- a/oidc-common-attribute-api/pom.xml
+++ b/oidc-common-attribute-api/pom.xml
@@ -33,10 +33,6 @@
<groupId>com.nimbusds</groupId>
<artifactId>oauth2-oidc-sdk</artifactId>
</dependency>
- <dependency>
- <groupId>net.minidev</groupId>
- <artifactId>json-smart</artifactId>
- </dependency>
</dependencies>
<build>
diff --git a/oidc-common-bom/pom.xml b/oidc-common-bom/pom.xml
new file mode 100644
index 0000000..6b07bae
--- /dev/null
+++ b/oidc-common-bom/pom.xml
@@ -0,0 +1,71 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>net.shibboleth.oidc</groupId>
+ <artifactId>oidc-common-parent</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ </parent>
+ <packaging>pom</packaging>
+
+ <artifactId>oidc-common-bom</artifactId>
+ <name>Shibboleth IdP :: Plugins :: OIDC Common :: BOM</name>
+ <description>Bill of Materials</description>
+
+
+ <dependencyManagement>
+ <dependencies>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>oidc-common-attribute-api</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>oidc-common-attribute-impl</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>oidc-common-crypto-api</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>oidc-common-crypto-impl</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>oidc-common-metadata-api</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>oidc-common-metadata-impl</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>oidc-common-saml-api</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>oidc-common-saml-impl</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.nimbusds</groupId>
+ <artifactId>oauth2-oidc-sdk</artifactId>
+ <version>${oauth2-oidc-sdk.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.nimbusds</groupId>
+ <artifactId>nimbus-jose-jwt</artifactId>
+ <version>${nimbus-jose-jwt.version}</version>
+ </dependency>
+ </dependencies>
+ </dependencyManagement>
+</project>
\ No newline at end of file
diff --git a/pom.xml b/pom.xml
index 9a28415..5f87f3e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -20,6 +20,8 @@
<opensaml.groupId>org.opensaml</opensaml.groupId>
<opensaml.version>4.1.0-SNAPSHOT</opensaml.version>
<java-support.version>8.2.0-SNAPSHOT</java-support.version>
+ <nimbus-jose-jwt.version>9.4.1</nimbus-jose-jwt.version>
+ <oauth2-oidc-sdk.version>8.33</oauth2-oidc-sdk.version>
<checkstyle.configLocation>${project.basedir}/checkstyle.xml</checkstyle.configLocation>
</properties>
<repositories>
@@ -127,7 +129,7 @@
<dependency>
<groupId>com.nimbusds</groupId>
<artifactId>oauth2-oidc-sdk</artifactId>
- <version>8.33</version>
+ <version>${oauth2-oidc-sdk.version}</version>
<exclusions>
<exclusion>
<groupId>com.sun.mail</groupId>
@@ -135,16 +137,15 @@
</exclusion>
</exclusions>
</dependency>
- <dependency>
+ <!-- <dependency>
<groupId>net.minidev</groupId>
<artifactId>json-smart</artifactId>
<version>2.3</version>
- </dependency>
+ </dependency> -->
<dependency>
<groupId>com.nimbusds</groupId>
<artifactId>nimbus-jose-jwt</artifactId>
- <scope>compile</scope>
- <version>9.4.1</version>
+ <version>${nimbus-jose-jwt.version}</version>
</dependency>
<!-- Shibboleth IdP BOM for importing IdP dependencies -->
<dependency>
@@ -182,5 +183,6 @@
<module>oidc-common-saml-impl</module>
<module>oidc-common-dist</module>
<module>oidc-common-plugin</module>
+ <module>oidc-common-bom</module>
</modules>
</project>
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list