diff options
| author | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2021-06-08 22:52:32 +0200 |
|---|---|---|
| committer | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2021-06-08 22:55:19 +0200 |
| commit | d6190d20d0de9b5e8258dfe626fbe0d6bf48ba15 (patch) | |
| tree | 43348bfa866044a169a3b4e52e3bf0ee5c48b5fd /opendc-format/build.gradle.kts | |
| parent | 8d386248202dbde4f9ee6a77435f2740fb2e1160 (diff) | |
test: Fix logging warning for tests
This change fixes the SLF4J logging warnings that occur during the
tests.
Diffstat (limited to 'opendc-format/build.gradle.kts')
| -rw-r--r-- | opendc-format/build.gradle.kts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/opendc-format/build.gradle.kts b/opendc-format/build.gradle.kts index e95cb666..6c87dd99 100644 --- a/opendc-format/build.gradle.kts +++ b/opendc-format/build.gradle.kts @@ -39,10 +39,11 @@ dependencies { exclude(group = "org.jetbrains.kotlin", module = "kotlin-reflect") } implementation(kotlin("reflect")) - implementation(libs.parquet) implementation(libs.hadoop.client) { exclude(group = "org.slf4j", module = "slf4j-log4j12") exclude(group = "log4j") } + + testRuntimeOnly(libs.slf4j.simple) } |
