summaryrefslogtreecommitdiff
path: root/opendc-web/opendc-web-ui
diff options
context:
space:
mode:
authorFabian Mastenbroek <mail.fabianm@gmail.com>2022-04-05 18:41:45 +0200
committerFabian Mastenbroek <mail.fabianm@gmail.com>2022-04-05 18:54:52 +0200
commitf2ff40b5170260289e99e0506525f0905f380907 (patch)
tree27d5aff0bd6fec89f117f2bae44f6fe47473aa48 /opendc-web/opendc-web-ui
parent8571677460c2c2f856a870e6e9b47db82cd249ca (diff)
fix(web/ui): Add workaround for Quarkus Gradle build issues
This chnage add a workaround for the issues that appear when building the Quarkus application due to it accessing the build files of the other local modules.
Diffstat (limited to 'opendc-web/opendc-web-ui')
-rw-r--r--opendc-web/opendc-web-ui/build.gradle.kts2
1 files changed, 2 insertions, 0 deletions
diff --git a/opendc-web/opendc-web-ui/build.gradle.kts b/opendc-web/opendc-web-ui/build.gradle.kts
index 62d71897..9e0d4ff0 100644
--- a/opendc-web/opendc-web-ui/build.gradle.kts
+++ b/opendc-web/opendc-web-ui/build.gradle.kts
@@ -107,4 +107,6 @@ tasks.processResources {
from(project.fileTree("public")) {
into("META-INF/resources/${project.name}/static")
}
+
+ mkdir("${project.buildDir}/classes/java/main")
}