Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FISH-8681 upgrade nimbus jose jwt #6823

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion appserver/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
<!-- Java API for XML Registries Resource Adapter -->
<jaxr.version>JAXR_RA_20091012</jaxr.version>

<nimbus-jose-jwt.version>9.37.3</nimbus-jose-jwt.version>
<nimbus-jose-jwt.version>9.39.1</nimbus-jose-jwt.version>
<accessors-smart.version>2.5.1</accessors-smart.version>
<json-smart.version>2.5.1</json-smart.version>
<reactor-core.version>3.6.4</reactor-core.version>
Expand Down
8 changes: 7 additions & 1 deletion appserver/tests/payara-samples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<!--
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) [2019-2022] Payara Foundation and/or its affiliates. All rights reserved.
* Copyright (c) [2019-2024] Payara Foundation and/or its affiliates. All rights reserved.
*
* The contents of this file are subject to the terms of either the GNU
* General Public License Version 2 only ("GPL") or the Common Development
Expand Down Expand Up @@ -311,6 +311,12 @@
<artifactId>nimbus-jose-jwt</artifactId>
<version>${nimbus-jose-jwt.version}</version>
</dependency>

<dependency>
<groupId>com.github.stephenc.jcip</groupId>
<artifactId>jcip-annotations</artifactId>
<version>${jcip-annotations.version}</version>
</dependency>
<!-- Used to automatically configure microprofile rest client in tests -->
<dependency>
<groupId>io.smallrye.config</groupId>
Expand Down
7 changes: 6 additions & 1 deletion appserver/tests/payara-samples/test-utils/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<!--
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.

Copyright (c) 2022 Payara Foundation and/or its affiliates. All rights reserved.
Copyright (c) [2022-2024] Payara Foundation and/or its affiliates. All rights reserved.

The contents of this file are subject to the terms of either the GNU
General Public License Version 2 only ("GPL") or the Common Development
Expand Down Expand Up @@ -92,6 +92,11 @@
<artifactId>nimbus-jose-jwt</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.github.stephenc.jcip</groupId>
<artifactId>jcip-annotations</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>fish.payara.server.core.common</groupId>
<artifactId>internal-api</artifactId>
Expand Down