Add semrack index postgresql
All checks were successful
Maven build / build (push) Successful in 3m17s

This commit is contained in:
Guillaume Dugas
2025-11-19 23:31:18 +01:00
parent de339f9554
commit 03b1e0851b
62 changed files with 1301 additions and 318 deletions

View File

@@ -0,0 +1,14 @@
package fr.codeanddata.semrack.index.postgres.deployment;
import io.quarkus.deployment.annotations.BuildStep;
import io.quarkus.deployment.builditem.FeatureBuildItem;
class SemrackIndexPostgresProcessor {
private static final String FEATURE = "semrack-index-postgres";
@BuildStep
FeatureBuildItem feature() {
return new FeatureBuildItem(FEATURE);
}
}

View File

@@ -0,0 +1,5 @@
package fr.codeanddata.semrack.index.postgres.test;
public class SemrackIndexPostgresDevModeTest {
}

View File

@@ -0,0 +1,5 @@
package fr.codeanddata.semrack.index.postgres.test;
public class SemrackIndexPostgresTest {
}