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

[geode] branch develop updated: GEODE-7851: use the latest version of nimbus-jose-jwt.jar (#4851)

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

jinmeiliao pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git


The following commit(s) were added to refs/heads/develop by this push:
     new 4984ed9  GEODE-7851: use the latest version of nimbus-jose-jwt.jar (#4851)
4984ed9 is described below

commit 4984ed9894e0b0a2018c9f12262a1a6f79a46d69
Author: Jinmei Liao <ji...@vmware.com>
AuthorDate: Mon Mar 30 10:09:05 2020 -0700

    GEODE-7851: use the latest version of nimbus-jose-jwt.jar (#4851)
---
 boms/geode-all-bom/src/test/resources/expected-pom.xml              | 6 ++++++
 .../org/apache/geode/gradle/plugins/DependencyConstraints.groovy    | 1 +
 2 files changed, 7 insertions(+)

diff --git a/boms/geode-all-bom/src/test/resources/expected-pom.xml b/boms/geode-all-bom/src/test/resources/expected-pom.xml
index c84ab4c..f46957c 100644
--- a/boms/geode-all-bom/src/test/resources/expected-pom.xml
+++ b/boms/geode-all-bom/src/test/resources/expected-pom.xml
@@ -530,6 +530,12 @@
         <scope>compile</scope>
       </dependency>
       <dependency>
+        <groupId>com.nimbusds</groupId>
+        <artifactId>nimbus-jose-jwt</artifactId>
+        <version>8.11</version>
+        <scope>compile</scope>
+      </dependency>
+      <dependency>
         <groupId>com.fasterxml.jackson.core</groupId>
         <artifactId>jackson-annotations</artifactId>
         <version>2.10.0</version>
diff --git a/buildSrc/src/main/groovy/org/apache/geode/gradle/plugins/DependencyConstraints.groovy b/buildSrc/src/main/groovy/org/apache/geode/gradle/plugins/DependencyConstraints.groovy
index c51c7e5..4ebae93 100644
--- a/buildSrc/src/main/groovy/org/apache/geode/gradle/plugins/DependencyConstraints.groovy
+++ b/buildSrc/src/main/groovy/org/apache/geode/gradle/plugins/DependencyConstraints.groovy
@@ -166,6 +166,7 @@ class DependencyConstraints implements Plugin<Project> {
         api(group: 'com.arakelian', name: 'java-jq', version: '0.10.1')
         api(group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-joda', version: '2.9.8')
         api(group: 'joda-time', name: 'joda-time', version: '2.9.8')
+        api(group: 'com.nimbusds', name:'nimbus-jose-jwt', version:'8.11')
       }
     }