From 9f95ba4652b506e53c1267edcc0afadd4f1cb4b4 Mon Sep 17 00:00:00 2001 From: Miles Lyon Date: Mon, 18 Jul 2022 15:34:23 -0400 Subject: [PATCH] Conditional upload for validators (uri or file upload). Added exceptions for POM conflicts between auth0 and iron verifiable credentials (and iron-vc with itself). --- inspector-vc/pom.xml | 6 +++--- .../main/java/org/oneedtech/inspect/vc/OB30Inspector.java | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/inspector-vc/pom.xml b/inspector-vc/pom.xml index 606f292..516e996 100644 --- a/inspector-vc/pom.xml +++ b/inspector-vc/pom.xml @@ -30,17 +30,17 @@ com.auth0 auth0 - 1.20.0 + 1.42.0 com.auth0 jwks-rsa - 0.12.0 + 0.21.1 com.auth0 java-jwt - 3.10.3 + 3.19.2 diff --git a/inspector-vc/src/main/java/org/oneedtech/inspect/vc/OB30Inspector.java b/inspector-vc/src/main/java/org/oneedtech/inspect/vc/OB30Inspector.java index 15683d5..75b7a74 100644 --- a/inspector-vc/src/main/java/org/oneedtech/inspect/vc/OB30Inspector.java +++ b/inspector-vc/src/main/java/org/oneedtech/inspect/vc/OB30Inspector.java @@ -82,7 +82,7 @@ public class OB30Inspector extends VCInspector { List accumulator = new ArrayList<>(); int probeCount = 0; - try { + try { //detect type (png, svg, json, jwt) and extract json data probeCount++; accumulator.add(new CredentialParseProbe().run(resource, ctx));