Skip to content

Commit

Permalink
make it independent of the vc libs
Browse files Browse the repository at this point in the history
  • Loading branch information
wistefan committed Dec 13, 2023
1 parent 5bbb066 commit 5ce9eca
Show file tree
Hide file tree
Showing 34 changed files with 2,424 additions and 1,657 deletions.
2 changes: 1 addition & 1 deletion crypto/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

<modules>
<module>default</module>
<module>fips1402</module>
<!-- <module>fips1402</module>-->
<module>elytron</module>
</modules>
</project>
5 changes: 0 additions & 5 deletions distribution/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,6 @@
<enabled>false</enabled>
</snapshots>
</repository>

<repository>
<id>danubetech-maven-public</id>
<url>https://repo.danubetech.com/repository/maven-public/</url>
</repository>
</repositories>

<profiles>
Expand Down
15 changes: 0 additions & 15 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -311,16 +311,6 @@
<module>js</module>
<module>quarkus</module>
</modules>
<repositories>
<repository>
<id>mavenCentral</id>
<url>https://repo1.maven.org/maven2/</url>
</repository>
<repository>
<id>danubetech-maven-public</id>
<url>https://repo.danubetech.com/repository/maven-public/</url>
</repository>
</repositories>
<dependencyManagement>

<dependencies>
Expand Down Expand Up @@ -1737,11 +1727,6 @@
<artifactId>jboss-servlet-api_4.0_spec</artifactId>
<version>${jboss-servlet-api_4.0_spec}</version>
</dependency>
<dependency>
<groupId>com.danubetech</groupId>
<artifactId>verifiable-credentials-java</artifactId>
<version>1.7.0</version>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down
4 changes: 0 additions & 4 deletions quarkus/runtime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -153,10 +153,6 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.danubetech</groupId>
<artifactId>verifiable-credentials-java</artifactId>
</dependency>
<dependency>
<groupId>org.keycloak</groupId>
<artifactId>keycloak-crypto-default</artifactId>
Expand Down
28 changes: 12 additions & 16 deletions services/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,24 @@
<maven.compiler.release>17</maven.compiler.release>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<version.org.projectlombok>1.18.24</version.org.projectlombok>
<version.org.projectlombok>1.18.30</version.org.projectlombok>
<mockito.version>1.9.5</mockito.version>
<mockito.junit-jupiter.version>5.0.0</mockito.junit-jupiter.version>
<junit.jupiter.version>5.9.2</junit.jupiter.version>
</properties>

<dependencies>
<dependency>
<groupId>com.apicatalog</groupId>
<artifactId>titanium-json-ld</artifactId>
<version>1.3.3</version>
</dependency>
<dependency>
<groupId>io.setl</groupId>
<artifactId>rdf-urdna</artifactId>
<version>1.1</version>
</dependency>

<dependency>
<groupId>org.keycloak</groupId>
<artifactId>keycloak-core</artifactId>
Expand Down Expand Up @@ -87,21 +98,6 @@
<groupId>org.twitter4j</groupId>
<artifactId>twitter4j-core</artifactId>
</dependency>
<!-- VC Model -->
<dependency>
<groupId>com.danubetech</groupId>
<artifactId>verifiable-credentials-java</artifactId>
<exclusions>
<exclusion>
<groupId>org.glassfish</groupId>
<artifactId>jakarta.json</artifactId>
</exclusion>
<exclusion>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk18on</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- lazy dev -->
<dependency>
<groupId>org.projectlombok</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/
public class OIDC4VPClientRegistrationProviderFactory implements ClientRegistrationProviderFactory {

public static final String PROTOCOL_ID = "OIDC4VP";
public static final String PROTOCOL_ID = "oidc4vp";

@Override public ClientRegistrationProvider create(KeycloakSession session) {
return new OIDC4VPClientRegistrationProvider(session);
Expand Down
Loading

0 comments on commit 5ce9eca

Please sign in to comment.