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 a624ac988a FELIX-6574 : Use RC1 of OSGi servlet whiteboard api
a624ac988a is described below
commit a624ac988af03043ca5a34e7f8f5bf70dbba6518
Author: Carsten Ziegeler <[email protected]>
AuthorDate: Wed Nov 9 08:06:11 2022 +0100
FELIX-6574 : Use RC1 of OSGi servlet whiteboard api
---
http/bridge/pom.xml | 14 +++++++++++---
1 file changed, 11 insertions(+), 3 deletions(-)
diff --git a/http/bridge/pom.xml b/http/bridge/pom.xml
index 72e999e152..0545e57931 100644
--- a/http/bridge/pom.xml
+++ b/http/bridge/pom.xml
@@ -56,6 +56,10 @@
org.apache.felix.http.bridge.internal.BridgeActivator
</Bundle-Activator>
<Export-Package>
+ org.osgi.service.servlet.context,
+ org.osgi.service.servlet.runtime,
+ org.osgi.service.servlet.runtime.dto,
+ org.osgi.service.servlet.whiteboard,
org.osgi.service.http,
org.osgi.service.http.context,
org.osgi.service.http.runtime,
@@ -64,8 +68,7 @@
</Export-Package>
<Private-Package>
org.apache.felix.http.base.*,
- org.apache.felix.http.bridge.internal.*,
- org.osgi.service.servlet.whiteboard.*
+ org.apache.felix.http.bridge.internal.*
</Private-Package>
<Conditional-Package>
org.apache.commons.*
@@ -124,6 +127,12 @@
<artifactId>osgi.core</artifactId>
<version>8.0.0</version>
</dependency>
+ <dependency>
+ <groupId>org.osgi</groupId>
+ <artifactId>org.osgi.service.servlet</artifactId>
+ <version>2.0.0-RC1</version>
+ <scope>provided</scope>
+ </dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.service.http</artifactId>
@@ -152,5 +161,4 @@
<version>5.0.0-SNAPSHOT</version>
</dependency>
</dependencies>
-
</project>