Skip to content

Commit

Permalink
Fix #1438: powerauth-client-model classes are duplicated in powerauth…
Browse files Browse the repository at this point in the history
…-fido2 (#1444)

- Introduce module powerauth-fido2-model
  • Loading branch information
banterCZ authored Apr 15, 2024
1 parent 30cb8b0 commit 0cd73fd
Show file tree
Hide file tree
Showing 75 changed files with 983 additions and 1,104 deletions.
7 changes: 7 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@
<module>powerauth-client-model</module>
<module>powerauth-rest-client-spring</module>
<module>powerauth-fido2</module>
<module>powerauth-fido2-model</module>
<module>powerauth-java-server</module>
<module>powerauth-admin</module>
</modules>
Expand Down Expand Up @@ -118,6 +119,12 @@
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>io.getlime.security</groupId>
<artifactId>powerauth-fido2-model</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>io.getlime.security</groupId>
<artifactId>powerauth-rest-client-spring</artifactId>
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

44 changes: 44 additions & 0 deletions powerauth-fido2-model/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<?xml version="1.0" encoding="UTF-8"?>
<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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>io.getlime.security</groupId>
<artifactId>powerauth-server-parent</artifactId>
<version>1.8.0-SNAPSHOT</version>
</parent>

<artifactId>powerauth-fido2-model</artifactId>
<name>powerauth-fido2-model</name>
<description>PowerAuth Server FIDO2 Model</description>

<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-cbor</artifactId>
</dependency>

<dependency>
<groupId>jakarta.validation</groupId>
<artifactId>jakarta.validation-api</artifactId>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
</dependencies>

</project>
Loading

0 comments on commit 0cd73fd

Please sign in to comment.