diff options
| author | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2022-09-27 11:11:48 +0200 |
|---|---|---|
| committer | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2022-10-03 17:30:38 +0200 |
| commit | 70e69db59c821568b5469c43b38b4d0a46b84e92 (patch) | |
| tree | ec28d30ac347de7f7b67c457e9e79375075aac9e /opendc-experiments/opendc-experiments-base/build.gradle.kts | |
| parent | 6e66158dcce09dbd60ff5a0e0ec9b127c9a219d9 (diff) | |
feat(exp/base): Add provisioning tool for experiments
This change adds to the experiment base in OpenDC a provisioning tool to
help setup the experimental environment in a reproducible manner.
The experimental environment can be defined in terms of *provisioning
steps* which manage the allocation, configuration, and clean-up of all
resources necessary for the experiments.
The provisioning steps are executed sequentially, so in case of dependencies,
the steps need to be ordered correctly.
Diffstat (limited to 'opendc-experiments/opendc-experiments-base/build.gradle.kts')
| -rw-r--r-- | opendc-experiments/opendc-experiments-base/build.gradle.kts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/opendc-experiments/opendc-experiments-base/build.gradle.kts b/opendc-experiments/opendc-experiments-base/build.gradle.kts index 181c86e2..2cce8c1c 100644 --- a/opendc-experiments/opendc-experiments-base/build.gradle.kts +++ b/opendc-experiments/opendc-experiments-base/build.gradle.kts @@ -30,4 +30,7 @@ plugins { } dependencies { + api(libs.microprofile.config) + + implementation(projects.opendcSimulator.opendcSimulatorCore) } |
