[java-idp-testbed] branch main updated: Add asm exclusion to OIDC dependency for Jetty 10.
Scott Cantor
cantor.2 at osu.edu
Tue Apr 19 18:40:30 UTC 2022
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch main
in repository java-idp-testbed.
View the commit online:
http://git.shibboleth.net/view/?p=java-idp-testbed.git;a=commit;h=86e58cdeae199942e4bf4d92f262d1f774444f14
The following commit(s) were added to refs/heads/main by this push:
new 86e58cd Add asm exclusion to OIDC dependency for Jetty 10.
86e58cd is described below
commit 86e58cdeae199942e4bf4d92f262d1f774444f14
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Tue Apr 19 14:40:27 2022 -0400
Add asm exclusion to OIDC dependency for Jetty 10.
---
pom.xml | 23 +++++++++++++++++++----
1 file changed, 19 insertions(+), 4 deletions(-)
diff --git a/pom.xml b/pom.xml
index d0839ef..63da7d4 100644
--- a/pom.xml
+++ b/pom.xml
@@ -309,60 +309,75 @@
<scope>runtime</scope>
</dependency>
- <!-- Uncomment for OIDC plugin testing. -->
- <!--
+ <!-- For OIDC plugin testing. -->
<dependency>
<groupId>net.shibboleth.idp.plugin.oidc</groupId>
<artifactId>idp-plugin-oidc-op-impl</artifactId>
<version>3.1.1-SNAPSHOT</version>
+ <scope>runtime</scope>
</dependency>
<dependency>
<groupId>net.shibboleth.oidc</groupId>
<artifactId>oidc-common-attribute-api</artifactId>
<version>${oidc-commons.version}</version>
+ <scope>runtime</scope>
+ <exclusions>
+ <!-- This breaks Jetty 10 due to being so old. -->
+ <exclusion>
+ <groupId>org.ow2.asm</groupId>
+ <artifactId>asm</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
<groupId>net.shibboleth.oidc</groupId>
<artifactId>oidc-common-attribute-impl</artifactId>
<version>${oidc-commons.version}</version>
+ <scope>runtime</scope>
</dependency>
<dependency>
<groupId>net.shibboleth.oidc</groupId>
<artifactId>oidc-common-crypto-api</artifactId>
<version>${oidc-commons.version}</version>
+ <scope>runtime</scope>
</dependency>
<dependency>
<groupId>net.shibboleth.oidc</groupId>
<artifactId>oidc-common-crypto-impl</artifactId>
<version>${oidc-commons.version}</version>
+ <scope>runtime</scope>
</dependency>
<dependency>
<groupId>net.shibboleth.oidc</groupId>
<artifactId>oidc-common-metadata-api</artifactId>
<version>${oidc-commons.version}</version>
+ <scope>runtime</scope>
</dependency>
<dependency>
<groupId>net.shibboleth.oidc</groupId>
<artifactId>oidc-common-metadata-impl</artifactId>
<version>${oidc-commons.version}</version>
+ <scope>runtime</scope>
</dependency>
<dependency>
<groupId>net.shibboleth.oidc</groupId>
<artifactId>oidc-common-profile-api</artifactId>
<version>${oidc-commons.version}</version>
+ <scope>runtime</scope>
</dependency>
<dependency>
<groupId>net.shibboleth.oidc</groupId>
<artifactId>oidc-common-saml-api</artifactId>
<version>${oidc-commons.version}</version>
+ <scope>runtime</scope>
</dependency>
<dependency>
<groupId>net.shibboleth.oidc</groupId>
<artifactId>oidc-common-saml-impl</artifactId>
<version>${oidc-commons.version}</version>
+ <scope>runtime</scope>
</dependency>
- -->
-
+
</dependencies>
<build>
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list