summaryrefslogtreecommitdiff
path: root/settings.gradle.kts
diff options
context:
space:
mode:
authorFabian Mastenbroek <mail.fabianm@gmail.com>2022-05-18 18:17:03 +0200
committerGitHub <noreply@github.com>2022-05-18 18:17:03 +0200
commit61b6550d7a476ab1aae45a5b9385dfd6ca4f6b6f (patch)
tree8632e8e26e409b6909a0bd90488356b1dcd70ba6 /settings.gradle.kts
parent00b5ee4bd423d8d9682a9ed9cd2af7c19a715459 (diff)
parentfb88cf197d9fe814e9692e7dafdc0d31b940acbc (diff)
merge: Add embedded experiment runner for dev mode (#87)
This pull request adds a new Quarkus extension that starts an embedded experiment runner while the user is in development mode. This allows users to deploy the entire OpenDC stack by using the `quarkusDev` command. By default, the experiment runner will only run experiments on one thread. Though, this setting is configurable. ## Implementation Notes :hammer_and_pick: * Use correct group for Gradle modules * Support client construction without AuthController * Move runner CLI into separate configuration * Remove module nesting in Quarkus extension * Add Quarkus extension for OpenDC runner * Add initial server distribution ## Breaking API Changes :warning: * N/A
Diffstat (limited to 'settings.gradle.kts')
-rw-r--r--settings.gradle.kts6
1 files changed, 4 insertions, 2 deletions
diff --git a/settings.gradle.kts b/settings.gradle.kts
index 805e8364..88c3ffb6 100644
--- a/settings.gradle.kts
+++ b/settings.gradle.kts
@@ -39,9 +39,11 @@ include(":opendc-web:opendc-web-proto")
include(":opendc-web:opendc-web-api")
include(":opendc-web:opendc-web-client")
include(":opendc-web:opendc-web-ui")
-include(":opendc-web:opendc-web-ui-quarkus:deployment")
-include(":opendc-web:opendc-web-ui-quarkus:runtime")
+include(":opendc-web:opendc-web-ui-quarkus")
+include(":opendc-web:opendc-web-ui-quarkus-deployment")
include(":opendc-web:opendc-web-runner")
+include(":opendc-web:opendc-web-runner-quarkus")
+include(":opendc-web:opendc-web-runner-quarkus-deployment")
include(":opendc-simulator:opendc-simulator-core")
include(":opendc-simulator:opendc-simulator-flow")
include(":opendc-simulator:opendc-simulator-power")