diff options
| author | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2022-10-12 21:53:53 +0200 |
|---|---|---|
| committer | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2022-10-21 22:13:04 +0200 |
| commit | 290e1fe14460d91e4703e55ac5f05dbe7b4505f7 (patch) | |
| tree | fa92da5ed3942471f6b63d572dfb63f7307f91bd /opendc-web/opendc-web-runner/build.gradle.kts | |
| parent | 2a457d9e5480407d76440a2277817cb735c86ae1 (diff) | |
fix: Add log4j-core dependency
This change adds the log4j-core dependency to various modules of OpenDC
using log4j2, to ensure logging keeps working. The upgrade to SLF4J 2.0 broke
the Log4j2 functionality, since the log4j-core artifact is not
automatically shipped with the SLF4J implementation.
Diffstat (limited to 'opendc-web/opendc-web-runner/build.gradle.kts')
| -rw-r--r-- | opendc-web/opendc-web-runner/build.gradle.kts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/opendc-web/opendc-web-runner/build.gradle.kts b/opendc-web/opendc-web-runner/build.gradle.kts index 2679a97f..531a9631 100644 --- a/opendc-web/opendc-web-runner/build.gradle.kts +++ b/opendc-web/opendc-web-runner/build.gradle.kts @@ -58,10 +58,11 @@ dependencies { runtimeOnly(projects.opendcTrace.opendcTraceBitbrains) cliImplementation(libs.clikt) - cliImplementation(libs.sentry.log4j2) cliRuntimeOnly(projects.opendcTrace.opendcTraceOpendc) + cliRuntimeOnly(libs.log4j.core) cliRuntimeOnly(libs.log4j.slf4j) + cliRuntimeOnly(libs.sentry.log4j2) } val createCli by tasks.creating(CreateStartScripts::class) { |
