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
The following commit(s) were added to refs/heads/main by this push:
new c449718e9c Fix `log4j-jdbc` test-JAR issue breaking the Maven `site`
goal (#4135)
c449718e9c is described below
commit c449718e9c225a472cf34591740f2873a3e458b5
Author: Volkan Yazıcı <[email protected]>
AuthorDate: Mon Jun 1 11:31:41 2026 +0200
Fix `log4j-jdbc` test-JAR issue breaking the Maven `site` goal (#4135)
---
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>