summaryrefslogtreecommitdiff
path: root/simulator/settings.gradle.kts
diff options
context:
space:
mode:
authorFabian Mastenbroek <mail.fabianm@gmail.com>2021-03-07 15:44:36 +0100
committerFabian Mastenbroek <mail.fabianm@gmail.com>2021-03-07 16:13:16 +0100
commit9bb91897404bbeac1d5f7a7f890abd3a9d5d9084 (patch)
tree9e492df044306b6230444b73f2c3db59ef45440e /simulator/settings.gradle.kts
parentdfbca195cbe1d6c4eebe7ccd4cc707c84ac43e79 (diff)
compute: Move ComputeService implementation in service module
This change introduces the ComputeService interface (previously VirtProvisioningService) and provides a central implementation in opendc-compute-service. Previously, the implementation of this interface was bound to the simulator package, which meant that independent business logic could not be re-used without importing the simulator code.
Diffstat (limited to 'simulator/settings.gradle.kts')
-rw-r--r--simulator/settings.gradle.kts1
1 files changed, 1 insertions, 0 deletions
diff --git a/simulator/settings.gradle.kts b/simulator/settings.gradle.kts
index 6e6a9d29..d2bc92a0 100644
--- a/simulator/settings.gradle.kts
+++ b/simulator/settings.gradle.kts
@@ -24,6 +24,7 @@ rootProject.name = "opendc-simulator"
include(":opendc-platform")
include(":opendc-core")
include(":opendc-compute:opendc-compute-api")
+include(":opendc-compute:opendc-compute-service")
include(":opendc-compute:opendc-compute-core")
include(":opendc-compute:opendc-compute-simulator")
include(":opendc-workflows")