This is an automated email from the ASF dual-hosted git repository.
rzo1 pushed a commit to branch tomee-10.x
in repository https://gitbox.apache.org/repos/asf/tomee.git
The following commit(s) were added to refs/heads/tomee-10.x by this push:
new 0a67d6aef7 Fix classpath customization test
0a67d6aef7 is described below
commit 0a67d6aef7a12b6b132cd6fa1907ef0fc1fa6e33
Author: Richard Zowalla <[email protected]>
AuthorDate: Thu Jan 29 09:09:45 2026 +0100
Fix classpath customization test
---
maven/tomee-maven-plugin/pom.xml | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/maven/tomee-maven-plugin/pom.xml b/maven/tomee-maven-plugin/pom.xml
index e59c0e3723..3718223e9e 100644
--- a/maven/tomee-maven-plugin/pom.xml
+++ b/maven/tomee-maven-plugin/pom.xml
@@ -118,13 +118,15 @@
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
- <version>${version.log4j2}</version>
+ <!-- These versions are intentionally old for ClasspathCustomizationTest
-->
+ <version>2.6.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-jul</artifactId>
- <version>${version.log4j2}</version>
+ <!-- These versions are intentionally old for ClasspathCustomizationTest
-->
+ <version>2.6.2</version>
<scope>test</scope>
</dependency>
</dependencies>