Add rest client + domain module
All checks were successful
Maven build / build (push) Successful in 4m18s
All checks were successful
Maven build / build (push) Successful in 4m18s
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
package fr.codeanddata.semrack.storage.postgres.storage;
|
||||
|
||||
import fr.codeanddata.semrack.core.models.StorageGet;
|
||||
import fr.codeanddata.semrack.models.StorageGet;
|
||||
import io.quarkus.hibernate.reactive.panache.Panache;
|
||||
import io.quarkus.test.junit.QuarkusTest;
|
||||
import io.quarkus.test.vertx.RunOnVertxContext;
|
||||
|
||||
@@ -4,9 +4,9 @@
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>fr.codeanddata.semrack</groupId>
|
||||
<artifactId>semrack-parent</artifactId>
|
||||
<artifactId>semrack-bom</artifactId>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
<relativePath>../../bom/pom.xml</relativePath>
|
||||
</parent>
|
||||
<artifactId>semrack-storage-postgres-parent</artifactId>
|
||||
<name>Semrack Storage Postgres - Parent</name>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
package fr.codeanddata.semrack.storage.postgres.entities;
|
||||
|
||||
import fr.codeanddata.semrack.core.models.Document;
|
||||
import fr.codeanddata.semrack.models.Document;
|
||||
import io.quarkus.hibernate.reactive.panache.PanacheEntity;
|
||||
import jakarta.persistence.Column;
|
||||
import jakarta.persistence.Entity;
|
||||
|
||||
@@ -2,9 +2,9 @@ package fr.codeanddata.semrack.storage.postgres.storage;
|
||||
|
||||
import com.fasterxml.jackson.core.type.TypeReference;
|
||||
import com.fasterxml.jackson.databind.ObjectMapper;
|
||||
import fr.codeanddata.semrack.core.Storage;
|
||||
import fr.codeanddata.semrack.core.models.Document;
|
||||
import fr.codeanddata.semrack.core.models.StorageGet;
|
||||
import fr.codeanddata.semrack.Storage;
|
||||
import fr.codeanddata.semrack.models.Document;
|
||||
import fr.codeanddata.semrack.models.StorageGet;
|
||||
import fr.codeanddata.semrack.core.utils.UIDGenerator;
|
||||
import fr.codeanddata.semrack.storage.postgres.entities.SemrackDocumentEntity;
|
||||
import io.quarkus.hibernate.reactive.panache.PanacheRepository;
|
||||
|
||||
Reference in New Issue
Block a user