Add Log4J as Gradle dependency and configures it with the bare minimum #169

Merged
lars.winzer merged 4 commits from feat/log4j-logging into main 2026-03-11 17:50:09 +01:00
Showing only changes of commit a2256b2c1e - Show all commits
+3
View File
@@ -31,6 +31,9 @@ dependencies {
implementation("org.apache.logging.log4j:log4j-api:2.25.3") implementation("org.apache.logging.log4j:log4j-api:2.25.3")
runtimeOnly("org.apache.logging.log4j:log4j-core:2.25.3") runtimeOnly("org.apache.logging.log4j:log4j-core:2.25.3")
// Source: https://mvnrepository.com/artifact/org.fusesource.jansi/jansi
runtimeOnly("org.fusesource.jansi:jansi:2.4.2")
testImplementation("org.junit.jupiter:junit-jupiter:5.10.0") testImplementation("org.junit.jupiter:junit-jupiter:5.10.0")
testRuntimeOnly("org.junit.platform:junit-platform-launcher:1.10.0") testRuntimeOnly("org.junit.platform:junit-platform-launcher:1.10.0")
} }