This is an automated email from the ASF dual-hosted git repository.
cziegeler pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/felix-dev.git
The following commit(s) were added to refs/heads/master by this push:
new 169f1b7a28 FELIX-6628 : Migrate http webconsoleplugin to Jakarta
Servlet API
169f1b7a28 is described below
commit 169f1b7a28f8441d9bc718d1551ddc7d31caf614
Author: Carsten Ziegeler <[email protected]>
AuthorDate: Fri Aug 18 10:36:14 2023 +0200
FELIX-6628 : Migrate http webconsoleplugin to Jakarta Servlet API
---
http/webconsoleplugin/pom.xml | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/http/webconsoleplugin/pom.xml b/http/webconsoleplugin/pom.xml
index f683b8acac..95ee692946 100644
--- a/http/webconsoleplugin/pom.xml
+++ b/http/webconsoleplugin/pom.xml
@@ -49,6 +49,15 @@
<artifactId>maven-bundle-plugin</artifactId>
<version>5.1.9</version>
<extensions>true</extensions>
+ <configuration>
+ <instructions>
+ <Import-Package>
+ jakarta.servlet;version="[5.0,7)",
+ jakarta.servlet.http;version="[5.0,7)",
+ *
+ </Import-Package>
+ </instructions>
+ </configuration>
</plugin>
</plugins>
</build>