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 e9ddc51a98 Make sure module works with jakarta servlet 6
e9ddc51a98 is described below
commit e9ddc51a98498cb84da12187f431523adcf0659d
Author: Carsten Ziegeler <[email protected]>
AuthorDate: Thu Aug 17 12:59:54 2023 +0200
Make sure module works with jakarta servlet 6
---
http/sslfilter/pom.xml | 11 ++++++++++-
1 file changed, 10 insertions(+), 1 deletion(-)
diff --git a/http/sslfilter/pom.xml b/http/sslfilter/pom.xml
index cb063130f1..8ba1c37c38 100644
--- a/http/sslfilter/pom.xml
+++ b/http/sslfilter/pom.xml
@@ -48,7 +48,16 @@
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>5.1.9</version>
- <extensions>true</extensions>
+ <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>