Add: log4j as gradle dependency

This commit is contained in:
Lars Simon Winzer
2026-03-11 17:40:46 +01:00
parent 14384dea5b
commit 2b012aa256
+4
View File
@@ -27,6 +27,10 @@ javafx {
} }
dependencies { dependencies {
// Source: https://mvnrepository.com/artifact/org.apache.logging.log4j
implementation("org.apache.logging.log4j:log4j-api:2.25.3")
runtimeOnly("org.apache.logging.log4j:log4j-core:2.25.3")
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")
} }