summaryrefslogtreecommitdiff
path: root/opendc-web/opendc-web-server/build.gradle.kts
diff options
context:
space:
mode:
Diffstat (limited to 'opendc-web/opendc-web-server/build.gradle.kts')
-rw-r--r--opendc-web/opendc-web-server/build.gradle.kts4
1 files changed, 3 insertions, 1 deletions
diff --git a/opendc-web/opendc-web-server/build.gradle.kts b/opendc-web/opendc-web-server/build.gradle.kts
index 62c13591..bbf713cd 100644
--- a/opendc-web/opendc-web-server/build.gradle.kts
+++ b/opendc-web/opendc-web-server/build.gradle.kts
@@ -46,7 +46,8 @@ dependencies {
implementation(libs.quarkus.security)
implementation(libs.quarkus.oidc)
- implementation(libs.quarkus.hibernate.orm)
+ implementation(libs.quarkus.hibernate.orm.core)
+ implementation(libs.quarkus.hibernate.orm.panache)
implementation(libs.quarkus.hibernate.validator)
implementation(libs.quarkus.flyway)
implementation(libs.quarkus.jdbc.postgresql)
@@ -56,6 +57,7 @@ dependencies {
testImplementation(libs.quarkus.junit5.core)
testImplementation(libs.quarkus.junit5.mockk)
testImplementation(libs.quarkus.jacoco)
+ testImplementation(libs.quarkus.panache.mock)
testImplementation(libs.restassured.core)
testImplementation(libs.restassured.kotlin)
testImplementation(libs.quarkus.test.security)