diff options
| author | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2021-05-07 16:26:10 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-05-07 16:26:10 +0200 |
| commit | 6779f62e6f54b783da348dc1aba248656f7956f7 (patch) | |
| tree | 068a38613d29bdbd4fe39aee90fde86343c656f3 /gradle.properties | |
| parent | d60e230c29beeeaa825987d5abf43c1e6f450dad (diff) | |
| parent | efea162372be99beb4de90929629c7ebccdb8d84 (diff) | |
build: Use Gradle version catalog
This pull request updates the Gradle build configuration to use the new version
catalog functionality, which allows us to store our dependency versions in a
centralized file located at `gradle/libs.versions.toml`.
Our previous approach stored the versions in `gradle.properties`.
The benefit of this approach however is that (1) it will be supported by
Gradle and (2) it allows us to access dependencies safely.
Diffstat (limited to 'gradle.properties')
| -rw-r--r-- | gradle.properties | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/gradle.properties b/gradle.properties index ea35e589..52648593 100644 --- a/gradle.properties +++ b/gradle.properties @@ -22,37 +22,3 @@ # For Dokka https://github.com/Kotlin/dokka/issues/1405 org.gradle.jvmargs=-XX:MaxMetaspaceSize=2G - -# Dependencies -kotlinx-coroutines.version = 1.4.3 - -# Dependencies (Logging) -kotlin-logging.version = 2.0.6 -slf4j.version = 1.7.30 -log4j.version = 2.14.1 - -# Dependencies (Telemetry) -opentelemetry-api.version = 1.1.0 -opentelemetry-api-metrics.version = 1.1.0-alpha -opentelemetry-sdk.version = 1.1.0 -opentelemetry-sdk-metrics.version = 1.1.0-alpha - -# Dependencies (CLI) -clikt.version = 3.1.0 -progressbar.version = 0.9.0 - -# Dependencies (Format) -jackson-module-kotlin.version = 2.12.0 -parquet-avro.version = 1.11.1 -hadoop-client.version = 3.2.1 - -# Dependencies (Other) -sentry-log4j2.version = 4.2.0 -mongodb-driver-sync.version = 4.2.1 -classgraph.version = 4.8.102 -config.version = 1.4.1 - -# Dependencies (Testing) -junit-jupiter.version = 5.7.1 -junit-platform.version = 1.7.1 -mockk.version = 1.11.0 |
