summaryrefslogtreecommitdiff
path: root/gradle
diff options
context:
space:
mode:
authorFabian Mastenbroek <mail.fabianm@gmail.com>2022-09-27 11:11:48 +0200
committerFabian Mastenbroek <mail.fabianm@gmail.com>2022-10-03 17:30:38 +0200
commit70e69db59c821568b5469c43b38b4d0a46b84e92 (patch)
treeec28d30ac347de7f7b67c457e9e79375075aac9e /gradle
parent6e66158dcce09dbd60ff5a0e0ec9b127c9a219d9 (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 'gradle')
-rw-r--r--gradle/libs.versions.toml2
1 files changed, 2 insertions, 0 deletions
diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml
index 503d1549..f78ab816 100644
--- a/gradle/libs.versions.toml
+++ b/gradle/libs.versions.toml
@@ -17,6 +17,7 @@ kotlinx-coroutines = "1.6.4"
ktlint-gradle = "10.3.0"
log4j = "2.18.0"
microprofile-openapi = "3.0"
+microprofile-config = "3.0.1"
mockk = "1.12.5"
parquet = "1.12.3"
progressbar = "0.9.3"
@@ -97,6 +98,7 @@ hadoop-common = { module = "org.apache.hadoop:hadoop-common", version.ref = "had
hadoop-mapreduce-client-core = { module = "org.apache.hadoop:hadoop-mapreduce-client-core", version.ref = "hadoop" }
commons-math3 = { module = "org.apache.commons:commons-math3", version.ref = "commons-math3" }
microprofile-openapi-api = { module = "org.eclipse.microprofile.openapi:microprofile-openapi-api", version.ref = "microprofile-openapi" }
+microprofile-config = { module = "org.eclipse.microprofile.config:microprofile-config-api", version.ref = "microprofile-config" }
# Other (Build)
dokka-gradle = { module = "org.jetbrains.dokka:dokka-gradle-plugin", version.ref = "dokka" }