This is an automated email from the ASF dual-hosted git repository. vy pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git
commit 5d4da95152904b6327fe2739a9ea2f401339a4c0 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> } ----
