88 lines
2.6 KiB
XML
88 lines
2.6 KiB
XML
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>org.1edtech</groupId>
|
|
<artifactId>inspector</artifactId>
|
|
<version>0.9.2</version>
|
|
</parent>
|
|
<artifactId>inspector-vc</artifactId>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.1edtech</groupId>
|
|
<artifactId>inspector-core</artifactId>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-databind</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>com.jayway.jsonpath</groupId>
|
|
<artifactId>json-path</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>com.networknt</groupId>
|
|
<artifactId>json-schema-validator</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.auth0</groupId>
|
|
<artifactId>auth0</artifactId>
|
|
<version>1.20.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.auth0</groupId>
|
|
<artifactId>jwks-rsa</artifactId>
|
|
<version>0.12.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.auth0</groupId>
|
|
<artifactId>java-jwt</artifactId>
|
|
<version>3.10.3</version>
|
|
</dependency>
|
|
<!-- https://github.com/filip26/iron-verifiable-credentials -->
|
|
<dependency>
|
|
<groupId>com.apicatalog</groupId>
|
|
<artifactId>iron-verifiable-credentials-jre8</artifactId>
|
|
<version>0.7.0</version>
|
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/com.apicatalog/titanium-json-ld -->
|
|
<!-- https://github.com/filip26/titanium-json-ld -->
|
|
<dependency>
|
|
<groupId>com.apicatalog</groupId>
|
|
<artifactId>titanium-json-ld</artifactId>
|
|
<version>1.3.1</version>
|
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
|
|
<dependency>
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
<artifactId>httpclient</artifactId>
|
|
<version>4.5.13</version>
|
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/io.setl/rdf-urdna -->
|
|
<!-- https://github.com/setl/rdf-urdna
|
|
<dependency>
|
|
<groupId>io.setl</groupId>
|
|
<artifactId>rdf-urdna</artifactId>
|
|
<version>1.1</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>com.apicatalog</groupId>
|
|
<artifactId>titanium-json-ld</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
-->
|
|
<dependency>
|
|
<groupId>org.glassfish</groupId>
|
|
<artifactId>jakarta.json</artifactId>
|
|
<version>2.0.1</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project> |