This is an automated email from the ASF dual-hosted git repository.
vy pushed a commit to branch 2.x
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git
The following commit(s) were added to refs/heads/2.x by this push:
new e4300926e3 Fix Gradle instructions
e4300926e3 is described below
commit e4300926e3c3fcb7d08eaab25cf14ab6cd0a9dbf
Author: Volkan Yazıcı <[email protected]>
AuthorDate: Thu May 2 09:33:21 2024 +0200
Fix Gradle instructions
---
src/site/antora/modules/ROOT/pages/5min.adoc | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/site/antora/modules/ROOT/pages/5min.adoc
b/src/site/antora/modules/ROOT/pages/5min.adoc
index 864dca105b..ad3f761ef7 100644
--- a/src/site/antora/modules/ROOT/pages/5min.adoc
+++ b/src/site/antora/modules/ROOT/pages/5min.adoc
@@ -396,10 +396,10 @@ dependencies {
// Assuming you already have the `implementation platform(...)` entry for
`log4j-bom`
// The logging implementation (i.e., Log4j Core)
- testOnly 'org.apache.logging.log4j:log4j-core' // <1>
+ testRuntimeOnly 'org.apache.logging.log4j:log4j-core' // <1>
// SLF4J-to-Log4j bridge // <2>
- testOnly 'org.apache.logging.log4j:log4j-slf4j2-impl' // <1>
+ testRuntimeOnly 'org.apache.logging.log4j:log4j-slf4j2-impl' // <1>
}
----