summaryrefslogtreecommitdiff
path: root/opendc-web/opendc-web-api
diff options
context:
space:
mode:
authorFabian Mastenbroek <mail.fabianm@gmail.com>2022-05-18 13:36:14 +0200
committerFabian Mastenbroek <mail.fabianm@gmail.com>2022-05-18 14:34:54 +0200
commit8ec4bd7584ad67b4aebd2a88a1e33902923a5375 (patch)
treeea220eabeb4912fd640242277aa8441a1238d791 /opendc-web/opendc-web-api
parent689c873ff68b6c8fd66740603dad6efa3bf8ab47 (diff)
refactor(web/ui): Remove module nesting in Quarkus extension
This change updates the OpenDC web UI Quarkus extension to live completely in the `opendc-web` directory, as opposed to adding another level of nesting. This also allows us to properly name the artifacts of the Quarkus extension modules.
Diffstat (limited to 'opendc-web/opendc-web-api')
-rw-r--r--opendc-web/opendc-web-api/build.gradle.kts4
1 files changed, 2 insertions, 2 deletions
diff --git a/opendc-web/opendc-web-api/build.gradle.kts b/opendc-web/opendc-web-api/build.gradle.kts
index 5ef6009f..fe493f1d 100644
--- a/opendc-web/opendc-web-api/build.gradle.kts
+++ b/opendc-web/opendc-web-api/build.gradle.kts
@@ -31,8 +31,8 @@ dependencies {
implementation(enforcedPlatform(libs.quarkus.bom))
implementation(projects.opendcWeb.opendcWebProto)
- compileOnly(projects.opendcWeb.opendcWebUiQuarkus.deployment) /* Temporary fix for Quarkus/Gradle issues */
- implementation(projects.opendcWeb.opendcWebUiQuarkus.runtime)
+ compileOnly(projects.opendcWeb.opendcWebUiQuarkusDeployment) /* Temporary fix for Quarkus/Gradle issues */
+ implementation(projects.opendcWeb.opendcWebUiQuarkus)
implementation(libs.quarkus.kotlin)
implementation(libs.quarkus.resteasy.core)