2022-07-08 11:33:45 +02:00
|
|
|
<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>
|
2022-06-20 14:51:37 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.1edtech</groupId>
|
2022-07-08 11:33:45 +02:00
|
|
|
<artifactId>inspector-core</artifactId>
|
2022-06-24 21:16:28 +02:00
|
|
|
</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>
|
2022-07-08 12:25:47 +02:00
|
|
|
<!-- https://github.com/filip26/iron-verifiable-credentials -->
|
2022-06-24 21:16:28 +02:00
|
|
|
<dependency>
|
2022-07-08 11:33:45 +02:00
|
|
|
<groupId>com.apicatalog</groupId>
|
|
|
|
<artifactId>iron-verifiable-credentials-jre8</artifactId>
|
|
|
|
<version>0.7.0</version>
|
2022-07-06 15:26:26 +02:00
|
|
|
</dependency>
|
2022-06-29 23:00:37 +02:00
|
|
|
<!-- https://mvnrepository.com/artifact/com.apicatalog/titanium-json-ld -->
|
2022-07-08 12:25:47 +02:00
|
|
|
<!-- https://github.com/filip26/titanium-json-ld -->
|
2022-06-29 23:00:37 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.apicatalog</groupId>
|
|
|
|
<artifactId>titanium-json-ld</artifactId>
|
|
|
|
<version>1.3.1</version>
|
|
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/io.setl/rdf-urdna -->
|
2022-07-08 11:33:45 +02:00
|
|
|
<!-- https://github.com/setl/rdf-urdna
|
2022-06-29 23:00:37 +02:00
|
|
|
<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>
|
2022-07-08 11:33:45 +02:00
|
|
|
</dependency>
|
|
|
|
-->
|
2022-06-29 23:00:37 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.glassfish</groupId>
|
|
|
|
<artifactId>jakarta.json</artifactId>
|
|
|
|
<version>2.0.1</version>
|
|
|
|
</dependency>
|
2022-06-20 14:51:37 +02:00
|
|
|
</dependencies>
|
|
|
|
</project>
|