This is an automated email from the ASF dual-hosted git repository. vy pushed a commit to branch fix-site in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git
commit 6c09a448f6b5b07f1b54409dec1a47d8796794fe Author: Volkan Yazıcı <[email protected]> AuthorDate: Mon Jun 1 09:59:28 2026 +0200 Fix `log4j-jdbc` test-JAR issue breaking the Maven `site` goal --- log4j-jdbc/pom.xml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/log4j-jdbc/pom.xml b/log4j-jdbc/pom.xml index 494b2d6983..61c680ae61 100644 --- a/log4j-jdbc/pom.xml +++ b/log4j-jdbc/pom.xml @@ -104,6 +104,13 @@ <goals> <goal>test-jar</goal> </goals> + <configuration> + <!-- `-Dmaven.test.skip` is used to build the `site`. + That causes this execution to be skipped. + Though test-JAR is required by `log4j-jdbc-dbcp2`. + Hence, ensure test-JAR generation is not skipped. --> + <skip>false</skip> + </configuration> </execution> </executions> </plugin>
