Conditional upload for validators (uri or file upload). Added exceptions for POM conflicts between auth0 and iron verifiable credentials (and iron-vc with itself).

This commit is contained in:
Miles Lyon 2022-07-18 15:34:23 -04:00
parent b74d62e218
commit 9f95ba4652
2 changed files with 4 additions and 4 deletions

View File

@ -30,17 +30,17 @@
<dependency> <dependency>
<groupId>com.auth0</groupId> <groupId>com.auth0</groupId>
<artifactId>auth0</artifactId> <artifactId>auth0</artifactId>
<version>1.20.0</version> <version>1.42.0</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.auth0</groupId> <groupId>com.auth0</groupId>
<artifactId>jwks-rsa</artifactId> <artifactId>jwks-rsa</artifactId>
<version>0.12.0</version> <version>0.21.1</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.auth0</groupId> <groupId>com.auth0</groupId>
<artifactId>java-jwt</artifactId> <artifactId>java-jwt</artifactId>
<version>3.10.3</version> <version>3.19.2</version>
</dependency> </dependency>
<!-- https://github.com/filip26/iron-verifiable-credentials --> <!-- https://github.com/filip26/iron-verifiable-credentials -->
<dependency> <dependency>

View File

@ -82,7 +82,7 @@ public class OB30Inspector extends VCInspector {
List<ReportItems> accumulator = new ArrayList<>(); List<ReportItems> accumulator = new ArrayList<>();
int probeCount = 0; int probeCount = 0;
try { try {
//detect type (png, svg, json, jwt) and extract json data //detect type (png, svg, json, jwt) and extract json data
probeCount++; probeCount++;
accumulator.add(new CredentialParseProbe().run(resource, ctx)); accumulator.add(new CredentialParseProbe().run(resource, ctx));