diff options
| author | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2022-04-05 18:41:45 +0200 |
|---|---|---|
| committer | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2022-04-05 18:54:52 +0200 |
| commit | f2ff40b5170260289e99e0506525f0905f380907 (patch) | |
| tree | 27d5aff0bd6fec89f117f2bae44f6fe47473aa48 /opendc-web/opendc-web-ui | |
| parent | 8571677460c2c2f856a870e6e9b47db82cd249ca (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.kts | 2 |
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") } |
