diff options
| author | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2022-05-18 14:01:38 +0200 |
|---|---|---|
| committer | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2022-05-18 17:23:39 +0200 |
| commit | 1489eefa18a904976f5328294c299df4285bacb4 (patch) | |
| tree | d01c0c4d6b9ffa51579b27b865358ad35e6ceea7 /opendc-web/opendc-web-api/build.gradle.kts | |
| parent | 8ec4bd7584ad67b4aebd2a88a1e33902923a5375 (diff) | |
feat(web/runner): Add Quarkus extension for OpenDC runner
This change adds a Quarkus extension that hosts the OpenDC web runner
for a (potentially local) OpenDC API instance. This functionality
enables a simplified developer experience by allowing users to spawn the
complete OpenDC stack with a single command.
Diffstat (limited to 'opendc-web/opendc-web-api/build.gradle.kts')
| -rw-r--r-- | opendc-web/opendc-web-api/build.gradle.kts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/opendc-web/opendc-web-api/build.gradle.kts b/opendc-web/opendc-web-api/build.gradle.kts index fe493f1d..a9392229 100644 --- a/opendc-web/opendc-web-api/build.gradle.kts +++ b/opendc-web/opendc-web-api/build.gradle.kts @@ -32,7 +32,9 @@ dependencies { implementation(projects.opendcWeb.opendcWebProto) compileOnly(projects.opendcWeb.opendcWebUiQuarkusDeployment) /* Temporary fix for Quarkus/Gradle issues */ + compileOnly(projects.opendcWeb.opendcWebRunnerQuarkusDeployment) implementation(projects.opendcWeb.opendcWebUiQuarkus) + implementation(projects.opendcWeb.opendcWebRunnerQuarkus) implementation(libs.quarkus.kotlin) implementation(libs.quarkus.resteasy.core) |
