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 e765da7f96 FELIX-6655 : Include Servlet API 6
e765da7f96 is described below

commit e765da7f9697f22a9cb41c7c0ae925bc7cdb79a3
Author: Carsten Ziegeler <[email protected]>
AuthorDate: Fri Sep 29 07:12:42 2023 +0200

    FELIX-6655 : Include Servlet API 6
---
 http/servlet-api/pom.xml | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/http/servlet-api/pom.xml b/http/servlet-api/pom.xml
index 56bf7d9a49..01ef1961da 100644
--- a/http/servlet-api/pom.xml
+++ b/http/servlet-api/pom.xml
@@ -38,6 +38,29 @@
 
     <build>
         <plugins>
+            <plugin>
+                <artifactId>maven-dependency-plugin</artifactId>
+                <version>3.6.0</version>
+                <executions>
+                    <execution>
+                        <id>process-servlet-5</id>
+                        <goals>
+                            <goal>unpack</goal>
+                        </goals>
+                        <configuration>
+                            <artifactItems>
+                                <artifactItem>
+                                    <groupId>jakarta.servlet</groupId>
+                                    
<artifactId>jakarta.servlet-api</artifactId>
+                                    <version>5.0.0</version>
+                                    
<includes>**/HttpSessionContext.class</includes>
+                                </artifactItem>
+                            </artifactItems>
+                            
<outputDirectory>${project.build.directory}/classes</outputDirectory>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
             <plugin>
                 <groupId>org.apache.felix</groupId>
                 <artifactId>maven-bundle-plugin</artifactId>

Reply via email to