This is an automated email from the ASF dual-hosted git repository.
robertlazarski pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/axis-axis2-java-core.git
The following commit(s) were added to refs/heads/master by this push:
new c5d6013345 Fix the latest version of log4j, which has some type of
config dependency on OSGi and Bnd tool that requires an empty
_bundleannotations XML element
c5d6013345 is described below
commit c5d6013345e509ab6e3fb4ae27bf2d988b6c7dd7
Author: Robert Lazarski <[email protected]>
AuthorDate: Tue Dec 17 23:41:20 2024 -1000
Fix the latest version of log4j, which has some type of config dependency
on OSGi and Bnd tool that requires an empty _bundleannotations XML element
---
pom.xml | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/pom.xml b/pom.xml
index e208909eb1..840b551259 100644
--- a/pom.xml
+++ b/pom.xml
@@ -882,7 +882,7 @@
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-bom</artifactId>
- <version>2.20.0</version>
+ <version>2.24.3</version>
<type>pom</type>
<scope>import</scope>
</dependency>
@@ -1163,6 +1163,11 @@
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>6.0.0</version>
+ <configuration>
+ <instructions>
+ <_bundleannotations/>
+ </instructions>
+ </configuration>
</plugin>
<plugin>
<groupId>net.nicoulaj.maven.plugins</groupId>