summaryrefslogtreecommitdiff
path: root/opendc-web/opendc-web-runner-quarkus-deployment/build.gradle.kts
diff options
context:
space:
mode:
authorFabian Mastenbroek <mail.fabianm@gmail.com>2022-07-30 12:37:13 +0200
committerFabian Mastenbroek <mail.fabianm@gmail.com>2022-08-03 11:33:45 +0200
commit16439ea8db70fe7d531fde30914291a9707f32f0 (patch)
tree4f46fb0ec26dd9fd0ce50fe9f22cc0e07787fd83 /opendc-web/opendc-web-runner-quarkus-deployment/build.gradle.kts
parenta424aa5e81c31f8cc6ba8846f0a6af29623588d4 (diff)
feat(web/runner): Avoid REST layer if possible
This change updates the Quarkus extension for the OpenDC runner to avoid the REST layer if possible, by providing an implementation of `JobManager` that directly communicates with the `JobService`. This means the runner does not have to traverse the authentication layer.
Diffstat (limited to 'opendc-web/opendc-web-runner-quarkus-deployment/build.gradle.kts')
-rw-r--r--opendc-web/opendc-web-runner-quarkus-deployment/build.gradle.kts1
1 files changed, 1 insertions, 0 deletions
diff --git a/opendc-web/opendc-web-runner-quarkus-deployment/build.gradle.kts b/opendc-web/opendc-web-runner-quarkus-deployment/build.gradle.kts
index d31c4839..b3f1ec3b 100644
--- a/opendc-web/opendc-web-runner-quarkus-deployment/build.gradle.kts
+++ b/opendc-web/opendc-web-runner-quarkus-deployment/build.gradle.kts
@@ -33,4 +33,5 @@ dependencies {
implementation(platform(libs.quarkus.bom))
implementation(libs.quarkus.core.deployment)
+ implementation(libs.quarkus.arc.deployment)
}