Skip to content

Commit e430092

Browse files
committed
Fix Gradle instructions
1 parent d352ec5 commit e430092

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/site/antora/modules/ROOT/pages/5min.adoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -396,10 +396,10 @@ dependencies {
396396
// Assuming you already have the `implementation platform(...)` entry for `log4j-bom`
397397
398398
// The logging implementation (i.e., Log4j Core)
399-
testOnly 'org.apache.logging.log4j:log4j-core' // <1>
399+
testRuntimeOnly 'org.apache.logging.log4j:log4j-core' // <1>
400400
401401
// SLF4J-to-Log4j bridge // <2>
402-
testOnly 'org.apache.logging.log4j:log4j-slf4j2-impl' // <1>
402+
testRuntimeOnly 'org.apache.logging.log4j:log4j-slf4j2-impl' // <1>
403403
404404
}
405405
----

0 commit comments

Comments
 (0)