diff options
| author | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2021-05-04 21:43:46 +0200 |
|---|---|---|
| committer | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2021-05-05 12:12:30 +0200 |
| commit | ad65a05e3f41850807f95f7d643496a4d39a6197 (patch) | |
| tree | 238b0fc83a5836d3fc08e3e888cec298eb8e8cd1 /buildSrc/src | |
| parent | 6466d5e1b8da4582434f02dff2ab56e8f736ef85 (diff) | |
exp: Add support for experiment configuration
This change adds support for configuring the experiments via
configuration files using the TypeSafe config library. In the future, we
will also integrate support for configuration into the harness.
Diffstat (limited to 'buildSrc/src')
| -rw-r--r-- | buildSrc/src/main/kotlin/Versions.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buildSrc/src/main/kotlin/Versions.kt b/buildSrc/src/main/kotlin/Versions.kt index 6aa9260b..bb187a40 100644 --- a/buildSrc/src/main/kotlin/Versions.kt +++ b/buildSrc/src/main/kotlin/Versions.kt @@ -26,7 +26,6 @@ import org.gradle.api.JavaVersion import org.gradle.api.Project import org.gradle.kotlin.dsl.extra import kotlin.properties.ReadOnlyProperty -import kotlin.reflect.KProperty /** * This class contains the versions of the dependencies shared by the different @@ -46,6 +45,7 @@ public class Versions(private val project: Project) { val slf4j by version() val kotlinLogging by version(name = "kotlin-logging") val log4j by version() + val config by version() val kotlinxCoroutines by version(name = "kotlinx-coroutines") |
