Added: release/felix/org.apache.felix.http.jetty12-1.0.18.pom
==============================================================================
--- release/felix/org.apache.felix.http.jetty12-1.0.18.pom (added)
+++ release/felix/org.apache.felix.http.jetty12-1.0.18.pom Sun Nov 17 09:04:36 
2024
@@ -0,0 +1,836 @@
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
+
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.apache.felix</groupId>
+        <artifactId>felix-parent</artifactId>
+        <version>9</version>
+        <relativePath>../../pom/pom.xml</relativePath>
+    </parent>
+
+    <name>Apache Felix Http Jetty</name>
+    <description>This is an implementation of the R8.1 OSGi Servlet Service, 
the R7 OSGi Http Service and the R7 OSGi Http Whiteboard 
Specification</description>
+
+    <artifactId>org.apache.felix.http.jetty12</artifactId>
+    <version>1.0.18</version>
+    <packaging>bundle</packaging>
+
+    <scm>
+        
<connection>scm:git:https://github.com/apache/felix-dev.git</connection>
+        
<developerConnection>scm:git:https://github.com/apache/felix-dev.git</developerConnection>
+        <url>https://gitbox.apache.org/repos/asf?p=felix-dev.git</url>
+      <tag>org.apache.felix.http.jetty12-1.0.18</tag>
+  </scm>
+
+    <properties>
+        <felix.java.version>17</felix.java.version>
+        <jetty.version>12.0.15</jetty.version>
+        <baseline.skip>true</baseline.skip>
+        <org.ops4j.pax.exam.version>4.13.3</org.ops4j.pax.exam.version>
+        <!-- To debug the pax process, override this with -D -->
+        <pax.vm.options>-Xmx512M</pax.vm.options>
+    </properties>
+
+    <build>
+        <plugins>
+
+            <!-- Use a groovy script to preserve the META-INF/services/* files 
for the artifacts that are embeded in the uber jar -->
+            <plugin>
+                <groupId>org.codehaus.gmaven</groupId>
+                <artifactId>groovy-maven-plugin</artifactId>
+                <version>2.1.1</version>
+                <executions>
+                    <execution>
+                        <id>groovy-magic</id>
+                        <phase>prepare-package</phase>
+                        <goals>
+                            <goal>execute</goal>
+                        </goals>
+                        <configuration>
+                            <source><![CDATA[
+                                // make an output dir for the merged resource 
files
+                                def slDir = new File(project.build.directory, 
"serviceloader-resources");
+                                slDir.mkdirs();
+
+                                // scan each of the artifacts to preserve the 
information found in any META-INF/services/* files
+                                project.artifacts.each() { artifact ->
+
+                                    if 
(artifact.getArtifactHandler().isAddedToClasspath() && 
!org.apache.maven.artifact.Artifact.SCOPE_TEST.equals( artifact.getScope() )
+                                            && 
!"org.eclipse.jetty.websocket".equals(artifact.getGroupId()) // skip the 
optional websocket artifacts
+                                            && 
!"org.eclipse.jetty.ee10.websocket".equals(artifact.getGroupId()) // skip the 
optional websocket artifacts
+                                            && 
!"jetty-annotations".equals(artifact.getArtifactId()) // skip the transitive 
artifacts from the optional websocket artifacts
+                                            && 
!"jetty-plus".equals(artifact.getArtifactId())
+                                            && 
!"jetty-webapp".equals(artifact.getArtifactId())
+                                            && 
!"jetty-ee".equals(artifact.getArtifactId())) {
+                                        def jar;
+                                        try {
+                                            jar = new 
java.util.jar.JarFile(artifact.file)
+                                            jar.stream().each() { entry ->
+                                               if (!entry.isDirectory() && 
entry.name.startsWith("META-INF/services/")) {
+
+                                                   // check if we already have 
a file with this name
+                                                   def svcFile = new 
File(slDir, entry.name)
+                                                   def svcSet = new 
LinkedHashSet();
+                                                   if (svcFile.exists()) {
+                                                       // found existing file, 
so load the items from the existing file so we can merge
+                                                       svcFile.eachLine { 
className ->
+                                                           className = 
className.trim();
+                                                           if 
(!className.isEmpty()) {
+                                                               
svcSet.add(className);
+                                                           }
+                                                       }
+                                                   }
+
+                                                   // read the content of the 
found entry
+                                                   def lineReader;
+                                                   try {
+                                                       lineReader = new 
BufferedReader(new InputStreamReader(jar.getInputStream(entry), 
java.nio.charset.StandardCharsets.UTF_8));
+                                                       def className;
+                                                       while ( ( className = 
lineReader.readLine() ) != null ) {
+                                                           className = 
className.trim();
+                                                           if 
(!className.isEmpty()) {
+                                                               
svcSet.add(className);
+                                                           }
+                                                       }
+                                                   } finally {
+                                                       // cleanup
+                                                       if (lineReader != null) 
{
+                                                           lineReader.close()
+                                                       }
+                                                   }
+
+                                                   // write the merged data to 
the output file
+                                                   if (!svcSet.isEmpty()) {
+                                                       // make any missing 
folders
+                                                       
svcFile.getParentFile().mkdirs();
+
+                                                       
svcFile.withWriter('utf-8') { writer ->
+                                                           svcSet.each() { 
item ->
+                                                               
writer.writeLine item;
+                                                           }
+
+                                                           // finish up with a 
blank line
+                                                           writer.println();
+                                                       }
+                                                   }
+
+                                               }
+                                            }
+                                        } finally {
+                                            // cleanup
+                                            if (jar != null) {
+                                                jar.close();
+                                            }
+                                        }
+                                    }
+
+                                }
+                            ]]></source>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-bundle-plugin</artifactId>
+                <version>5.1.9</version>
+                <extensions>true</extensions>
+                <configuration>
+                    <instructions>
+                        
<Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
+                        <Bundle-Version>${project.version}</Bundle-Version>
+                        <X-Jetty-Version>
+                            ${jetty.version}
+                        </X-Jetty-Version>
+                        <Bundle-Activator>
+                            org.apache.felix.http.jetty.internal.JettyActivator
+                        </Bundle-Activator>
+                        <Export-Package>
+                            org.osgi.service.http,
+                            org.osgi.service.http.context,
+                            org.osgi.service.http.runtime,
+                            org.osgi.service.http.runtime.dto,
+                            org.osgi.service.http.whiteboard,
+                            org.osgi.service.servlet.context,
+                            org.osgi.service.servlet.runtime,
+                            org.osgi.service.servlet.runtime.dto,
+                            org.osgi.service.servlet.whiteboard,
+                            org.eclipse.jetty.alpn.server,
+                            org.eclipse.jetty.http.*,
+                            org.eclipse.jetty.http2.*,
+                            org.eclipse.jetty.io.*,
+                            org.eclipse.jetty.jmx.*,
+                            org.eclipse.jetty.security.*,
+                            org.eclipse.jetty.session.*,
+                            org.eclipse.jetty.server.*,
+                            org.eclipse.jetty.util.*,
+                            org.eclipse.jetty.ee.*,
+                            !org.eclipse.jetty.ee10.websocket.*,
+                            org.eclipse.jetty.ee10.servlet.*,
+                            org.apache.felix.http.jetty,
+                            org.apache.felix.http.jakartawrappers,
+                            org.apache.felix.http.javaxwrappers
+                        </Export-Package>
+                        <Private-Package>
+                            org.apache.felix.http.base.*,
+                            org.apache.felix.http.jetty.*,
+                            org.eclipse.jetty.version
+                        </Private-Package>
+                        <Conditional-Package>
+                            org.apache.commons.*
+                        </Conditional-Package>
+                        <Import-Package>
+                            sun.misc;resolution:=optional,
+                            sun.nio.ch;resolution:=optional,
+                            javax.imageio;resolution:=optional,
+                            javax.sql;resolution:=optional,
+                            org.ietf.jgss;resolution:=optional,
+                            
org.osgi.service.cm;resolution:=optional;version="[1.3,2)",
+                            
org.osgi.service.event;resolution:=optional;version="[1.2,2)",
+                            
org.osgi.service.log;resolution:=optional;version="[1.3,2)",
+                            
org.osgi.service.metatype;resolution:=optional;version="[1.1,2)",
+                            
org.osgi.service.useradmin;resolution:=optional;version="[1.1,2)",
+                            org.osgi.service.http;version="[1.2.1,1.3)",
+                            org.osgi.service.http.context;version="[1.1,1.2)",
+                            org.osgi.service.http.runtime;version="[1.1,1.2)",
+                            
org.osgi.service.http.runtime.dto;version="[1.1,1.2)",
+                            org.slf4j;version="[1.0,3.0)",
+                            *
+                        </Import-Package>
+                        <DynamicImport-Package>
+                            org.osgi.service.cm;version="[1.3,2)",
+                            org.osgi.service.event;version="[1.2,2)",
+                            org.osgi.service.log;version="[1.3,2)",
+                            org.osgi.service.metatype;version="[1.4,2)"
+                        </DynamicImport-Package>
+                        <Provide-Capability>
+                            
osgi.implementation;osgi.implementation="osgi.http";version:Version="1.1";
+                            
uses:="javax.servlet,javax.servlet.http,org.osgi.service.http.context,org.osgi.service.http.whiteboard",
+                            
osgi.implementation;osgi.implementation="osgi.http";version:Version="2.0";
+                            
uses:="jakarta.servlet,jakarta.servlet.http,org.osgi.service.servlet.context,org.osgi.service.servlet.whiteboard",
+                            
osgi.service;objectClass:List&lt;String&gt;="org.osgi.service.servlet.runtime.HttpServiceRuntime";
+                            
uses:="org.osgi.service.servlet.runtime,org.osgi.service.servlet.runtime.dto",
+                            
osgi.service;objectClass:List&lt;String&gt;="org.osgi.service.http.runtime.HttpServiceRuntime";
+                            
uses:="org.osgi.service.http.runtime,org.osgi.service.http.runtime.dto",
+                            
osgi.service;objectClass:List&lt;String&gt;="org.osgi.service.http.HttpService";
+                            uses:="org.osgi.service.http",
+                            
osgi.serviceloader;osgi.serviceloader="org.eclipse.jetty.http.HttpFieldPreEncoder"
+                        </Provide-Capability>
+                        <Require-Capability>
+                            
osgi.contract;filter:="(&amp;(osgi.contract=JavaServlet)(version=4.0))",
+                            
osgi.contract;filter:="(&amp;(osgi.contract=JakartaServlet)(version=6.0))",
+                            
osgi.extender;filter:="(osgi.extender=osgi.serviceloader.registrar)";resolution:=optional,
+                            
osgi.extender;filter:="(osgi.extender=osgi.serviceloader.processor)";resolution:=optional,
+                            
osgi.serviceloader;filter:="(osgi.serviceloader=org.eclipse.jetty.http.HttpFieldPreEncoder)";resolution:=optional;cardinality:=multiple,
+                            
osgi.serviceloader;filter:="(osgi.serviceloader=org.eclipse.jetty.io.ssl.ALPNProcessor$Server)";resolution:=optional;cardinality:=multiple
+                        </Require-Capability>
+                        <Include-Resource>
+                            
{maven-resources},${project.build.directory}/serviceloader-resources
+                        </Include-Resource>
+                        <_removeheaders>
+                            
Private-Package,Conditional-Package,Include-Resource
+                        </_removeheaders>
+                    </instructions>
+                </configuration>
+                <executions>
+                    <execution>
+                        <id>bundle</id>
+                        <phase>package</phase>
+                        <goals>
+                            <goal>bundle</goal>
+                        </goals>
+                    </execution>
+                    <execution>
+                        <id>baseline</id>
+                        <goals>
+                          <goal>baseline</goal>
+                        </goals>
+                    </execution>
+                    <execution>
+                        <id>light-bundle</id>
+                        <goals>
+                            <goal>bundle</goal>
+                        </goals>
+                        <configuration>
+                            <classifier>light</classifier>
+                            <instructions>
+                               <Bundle-Name>${project.name} Light</Bundle-Name>
+                               
<Bundle-SymbolicName>${project.artifactId}.light</Bundle-SymbolicName>
+                               <!-- We need to override this from the base 
configuration -->
+                               <Conditional-Package>
+                                   foo
+                               </Conditional-Package>
+                               <Export-Package>
+                                    org.osgi.service.http,
+                                    org.osgi.service.http.context,
+                                    org.osgi.service.http.runtime,
+                                    org.osgi.service.http.runtime.dto,
+                                    org.osgi.service.http.whiteboard,
+                                    org.osgi.service.servlet.context,
+                                    org.osgi.service.servlet.runtime,
+                                    org.osgi.service.servlet.runtime.dto,
+                                    org.osgi.service.servlet.whiteboard,
+                                    org.apache.felix.http.jetty,
+                                    org.apache.felix.http.javaxwrappers,
+                                    org.apache.felix.http.jakartawrappers
+                                </Export-Package>
+                                <Private-Package>
+                                    org.apache.felix.http.base.*,
+                                    org.apache.felix.http.jetty.*,
+                                </Private-Package>
+                                <Import-Package>
+                                    
org.osgi.service.cm;resolution:=optional;version="[1.3,2)",
+                                    
org.osgi.service.event;resolution:=optional;version="[1.2,2)",
+                                    
org.osgi.service.log;resolution:=optional;version="[1.3,2)",
+                                    
org.osgi.service.metatype;resolution:=optional;version="[1.4,2)",
+                                    
org.osgi.service.useradmin;resolution:=optional;version="[1.1,2)",
+                                    
org.osgi.service.http;version="[1.2.1,1.3)",
+                                    
org.osgi.service.http.context;version="[1.1,1.2)",
+                                    
org.osgi.service.http.runtime;version="[1.1,1.2)",
+                                    
org.osgi.service.http.runtime.dto;version="[1.1,1.2)",
+                                    *
+                                </Import-Package>
+                                <!-- We need to override this from the base 
configuration to exclude the ServiceLoader capabilities -->
+                                <Provide-Capability>
+                                    
osgi.implementation;osgi.implementation="osgi.http";version:Version="1.1";
+                                    
uses:="javax.servlet,javax.servlet.http,org.osgi.service.http.context,org.osgi.service.http.whiteboard",
+                                    
osgi.implementation;osgi.implementation="osgi.http";version:Version="2.0";
+                                    
uses:="jakarta.servlet,jakarta.servlet.http,org.osgi.service.servlet.context,org.osgi.service.servlet.whiteboard",
+                                    
osgi.service;objectClass:List&lt;String&gt;="org.osgi.service.servlet.runtime.HttpServiceRuntime";
+                                    
uses:="org.osgi.service.servlet.runtime,org.osgi.service.servlet.runtime.dto",
+                                    
osgi.service;objectClass:List&lt;String&gt;="org.osgi.service.http.runtime.HttpServiceRuntime";
+                                    
uses:="org.osgi.service.http.runtime,org.osgi.service.http.runtime.dto",
+                                    
osgi.service;objectClass:List&lt;String&gt;="org.osgi.service.http.HttpService";
+                                    uses:="org.osgi.service.http"
+                                </Provide-Capability>
+                                <!-- We need to override this from the base 
configuration to exclude the ServiceLoader capabilities -->
+                                <Require-Capability>
+                                  
osgi.contract;filter:="(&amp;(osgi.contract=JavaServlet)(version=4.0))",
+                                  
osgi.contract;filter:="(&amp;(osgi.contract=JakartaServlet)(version=6.0))"
+                                </Require-Capability>
+                                <!-- We need to override this from the base 
configuration to exclude the ServiceLoader resources -->
+                                <Include-Resource>
+                                    {maven-resources}
+                                </Include-Resource>
+                                <_removeheaders>
+                                    
X-Jetty-Version,Private-Package,Conditional-Package,Include-Resource
+                                </_removeheaders>
+                            </instructions>
+                        </configuration>
+                    </execution>
+                    <execution>
+                        <id>with-jetty-websockets</id>
+                        <goals>
+                            <goal>bundle</goal>
+                        </goals>
+                        <configuration>
+                            <classifier>with-jetty-websockets</classifier>
+                            <instructions>
+                                
<Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
+                                
<Bundle-Version>${project.version}</Bundle-Version>
+                                <X-Jetty-Version>
+                                    ${jetty.version}
+                                </X-Jetty-Version>
+                                <Bundle-Activator>
+                                    
org.apache.felix.http.jetty.internal.JettyActivator
+                                </Bundle-Activator>
+                                <Export-Package>
+                                    org.osgi.service.http,
+                                    org.osgi.service.http.context,
+                                    org.osgi.service.http.runtime,
+                                    org.osgi.service.http.runtime.dto,
+                                    org.osgi.service.http.whiteboard,
+                                    org.osgi.service.servlet.context,
+                                    org.osgi.service.servlet.runtime,
+                                    org.osgi.service.servlet.runtime.dto,
+                                    org.osgi.service.servlet.whiteboard,
+                                    org.eclipse.jetty.alpn.server,
+                                    org.eclipse.jetty.http.*,
+                                    org.eclipse.jetty.http2.*,
+                                    org.eclipse.jetty.io.*,
+                                    org.eclipse.jetty.jmx.*,
+                                    org.eclipse.jetty.security.*,
+                                    org.eclipse.jetty.session.*,
+                                    org.eclipse.jetty.server.*,
+                                    org.eclipse.jetty.util.*,
+                                    org.eclipse.jetty.ee.*,
+                                    org.eclipse.jetty.ee10.servlet.*,
+                                    
!org.eclipse.jetty.ee10.websocket.jakarta.*,
+                                    org.eclipse.jetty.ee10.websocket.*,
+                                    org.eclipse.jetty.websocket.*,
+                                    org.apache.felix.http.jetty,
+                                    org.apache.felix.http.jakartawrappers,
+                                    org.apache.felix.http.javaxwrappers
+                                </Export-Package>
+                                <Private-Package>
+                                    org.apache.felix.http.base.*,
+                                    org.apache.felix.http.jetty.*,
+                                    org.eclipse.jetty.version
+                                </Private-Package>
+                                <Conditional-Package>
+                                    org.apache.commons.*
+                                </Conditional-Package>
+                                <Import-Package>
+                                    
org.eclipse.jetty.client;resolution:=optional,
+                                    sun.misc;resolution:=optional,
+                                    sun.nio.ch;resolution:=optional,
+                                    javax.imageio;resolution:=optional,
+                                    javax.sql;resolution:=optional,
+                                    org.ietf.jgss;resolution:=optional,
+                                    
org.osgi.service.cm;resolution:=optional;version="[1.3,2)",
+                                    
org.osgi.service.event;resolution:=optional;version="[1.2,2)",
+                                    
org.osgi.service.log;resolution:=optional;version="[1.3,2)",
+                                    
org.osgi.service.metatype;resolution:=optional;version="[1.1,2)",
+                                    
org.osgi.service.useradmin;resolution:=optional;version="[1.1,2)",
+                                    
org.osgi.service.http;version="[1.2.1,1.3)",
+                                    
org.osgi.service.http.context;version="[1.1,1.2)",
+                                    
org.osgi.service.http.runtime;version="[1.1,1.2)",
+                                    
org.osgi.service.http.runtime.dto;version="[1.1,1.2)",
+                                    org.slf4j;version="[1.0,3.0)",
+                                    *
+                                </Import-Package>
+                                <DynamicImport-Package>
+                                    org.osgi.service.cm;version="[1.3,2)",
+                                    org.osgi.service.event;version="[1.2,2)",
+                                    org.osgi.service.log;version="[1.3,2)",
+                                    org.osgi.service.metatype;version="[1.4,2)"
+                                </DynamicImport-Package>
+                                <Provide-Capability>
+                                    
osgi.implementation;osgi.implementation="osgi.http";version:Version="1.1";
+                                    
uses:="javax.servlet,javax.servlet.http,org.osgi.service.http.context,org.osgi.service.http.whiteboard",
+                                    
osgi.implementation;osgi.implementation="osgi.http";version:Version="2.0";
+                                    
uses:="jakarta.servlet,jakarta.servlet.http,org.osgi.service.servlet.context,org.osgi.service.servlet.whiteboard",
+                                    
osgi.service;objectClass:List&lt;String&gt;="org.osgi.service.servlet.runtime.HttpServiceRuntime";
+                                    
uses:="org.osgi.service.servlet.runtime,org.osgi.service.servlet.runtime.dto",
+                                    
osgi.service;objectClass:List&lt;String&gt;="org.osgi.service.http.runtime.HttpServiceRuntime";
+                                    
uses:="org.osgi.service.http.runtime,org.osgi.service.http.runtime.dto",
+                                    
osgi.service;objectClass:List&lt;String&gt;="org.osgi.service.http.HttpService";
+                                    uses:="org.osgi.service.http",
+                                    
osgi.serviceloader;osgi.serviceloader="org.eclipse.jetty.http.HttpFieldPreEncoder"
+                                </Provide-Capability>
+                                <Require-Capability>
+                                    
osgi.contract;filter:="(&amp;(osgi.contract=JavaServlet)(version=4.0))",
+                                    
osgi.contract;filter:="(&amp;(osgi.contract=JakartaServlet)(version=6.0))",
+                                    
osgi.extender;filter:="(osgi.extender=osgi.serviceloader.registrar)";resolution:=optional,
+                                    
osgi.extender;filter:="(osgi.extender=osgi.serviceloader.processor)";resolution:=optional,
+                                    
osgi.serviceloader;filter:="(osgi.serviceloader=org.eclipse.jetty.http.HttpFieldPreEncoder)";resolution:=optional;cardinality:=multiple,
+                                    
osgi.serviceloader;filter:="(osgi.serviceloader=org.eclipse.jetty.io.ssl.ALPNProcessor$Server)";resolution:=optional;cardinality:=multiple
+                                </Require-Capability>
+                                <Include-Resource>
+                                    
{maven-resources},${project.build.directory}/serviceloader-resources
+                                </Include-Resource>
+                                <_removeheaders>
+                                    
Private-Package,Conditional-Package,Include-Resource
+                                </_removeheaders>
+                            </instructions>
+                        </configuration>
+                    </execution>
+                    <execution>
+                        <id>with-jakarta-websockets</id>
+                        <goals>
+                            <goal>bundle</goal>
+                        </goals>
+                        <configuration>
+                            <classifier>with-jakarta-websockets</classifier>
+                            <instructions>
+                                
<Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
+                                
<Bundle-Version>${project.version}</Bundle-Version>
+                                <X-Jetty-Version>
+                                    ${jetty.version}
+                                </X-Jetty-Version>
+                                <Bundle-Activator>
+                                    
org.apache.felix.http.jetty.internal.JettyActivator
+                                </Bundle-Activator>
+                                <Export-Package>
+                                    org.osgi.service.http,
+                                    org.osgi.service.http.context,
+                                    org.osgi.service.http.runtime,
+                                    org.osgi.service.http.runtime.dto,
+                                    org.osgi.service.http.whiteboard,
+                                    org.osgi.service.servlet.context,
+                                    org.osgi.service.servlet.runtime,
+                                    org.osgi.service.servlet.runtime.dto,
+                                    org.osgi.service.servlet.whiteboard,
+                                    org.eclipse.jetty.alpn.server,
+                                    org.eclipse.jetty.http.*,
+                                    org.eclipse.jetty.http2.*,
+                                    org.eclipse.jetty.io.*,
+                                    org.eclipse.jetty.jmx.*,
+                                    org.eclipse.jetty.security.*,
+                                    org.eclipse.jetty.session.*,
+                                    org.eclipse.jetty.server.*,
+                                    org.eclipse.jetty.util.*,
+                                    org.eclipse.jetty.ee.*,
+                                    !org.eclipse.jetty.ee10.websocket.server.*,
+                                    
!org.eclipse.jetty.ee10.websocket.servlet.*,
+                                    org.eclipse.jetty.ee10.websocket.jakarta.*,
+                                    org.eclipse.jetty.ee10.servlet.*,
+                                    org.eclipse.jetty.websocket.*,
+                                    org.apache.felix.http.jetty,
+                                    org.apache.felix.http.jakartawrappers,
+                                    org.apache.felix.http.javaxwrappers
+                                </Export-Package>
+                                <Private-Package>
+                                    org.apache.felix.http.base.*,
+                                    org.apache.felix.http.jetty.*,
+                                    org.eclipse.jetty.version
+                                </Private-Package>
+                                <Conditional-Package>
+                                    org.apache.commons.*
+                                </Conditional-Package>
+                                <Import-Package>
+                                    
org.eclipse.jetty.client;resolution:=optional,
+                                    sun.misc;resolution:=optional,
+                                    sun.nio.ch;resolution:=optional,
+                                    javax.imageio;resolution:=optional,
+                                    javax.sql;resolution:=optional,
+                                    org.ietf.jgss;resolution:=optional,
+                                    
org.osgi.service.cm;resolution:=optional;version="[1.3,2)",
+                                    
org.osgi.service.event;resolution:=optional;version="[1.2,2)",
+                                    
org.osgi.service.log;resolution:=optional;version="[1.3,2)",
+                                    
org.osgi.service.metatype;resolution:=optional;version="[1.1,2)",
+                                    
org.osgi.service.useradmin;resolution:=optional;version="[1.1,2)",
+                                    
org.osgi.service.http;version="[1.2.1,1.3)",
+                                    
org.osgi.service.http.context;version="[1.1,1.2)",
+                                    
org.osgi.service.http.runtime;version="[1.1,1.2)",
+                                    
org.osgi.service.http.runtime.dto;version="[1.1,1.2)",
+                                    org.slf4j;version="[1.0,3.0)",
+                                    *
+                                </Import-Package>
+                                <DynamicImport-Package>
+                                    org.osgi.service.cm;version="[1.3,2)",
+                                    org.osgi.service.event;version="[1.2,2)",
+                                    org.osgi.service.log;version="[1.3,2)",
+                                    org.osgi.service.metatype;version="[1.4,2)"
+                                </DynamicImport-Package>
+                                <Provide-Capability>
+                                    
osgi.implementation;osgi.implementation="osgi.http";version:Version="1.1";
+                                    
uses:="javax.servlet,javax.servlet.http,org.osgi.service.http.context,org.osgi.service.http.whiteboard",
+                                    
osgi.implementation;osgi.implementation="osgi.http";version:Version="2.0";
+                                    
uses:="jakarta.servlet,jakarta.servlet.http,org.osgi.service.servlet.context,org.osgi.service.servlet.whiteboard",
+                                    
osgi.service;objectClass:List&lt;String&gt;="org.osgi.service.servlet.runtime.HttpServiceRuntime";
+                                    
uses:="org.osgi.service.servlet.runtime,org.osgi.service.servlet.runtime.dto",
+                                    
osgi.service;objectClass:List&lt;String&gt;="org.osgi.service.http.runtime.HttpServiceRuntime";
+                                    
uses:="org.osgi.service.http.runtime,org.osgi.service.http.runtime.dto",
+                                    
osgi.service;objectClass:List&lt;String&gt;="org.osgi.service.http.HttpService";
+                                    uses:="org.osgi.service.http",
+                                    
osgi.serviceloader;osgi.serviceloader="org.eclipse.jetty.http.HttpFieldPreEncoder"
+                                </Provide-Capability>
+                                <Require-Capability>
+                                    
osgi.contract;filter:="(&amp;(osgi.contract=JavaServlet)(version=4.0))",
+                                    
osgi.contract;filter:="(&amp;(osgi.contract=JakartaServlet)(version=6.0))",
+                                    
osgi.extender;filter:="(osgi.extender=osgi.serviceloader.registrar)";resolution:=optional,
+                                    
osgi.extender;filter:="(osgi.extender=osgi.serviceloader.processor)";resolution:=optional,
+                                    
osgi.serviceloader;filter:="(osgi.serviceloader=org.eclipse.jetty.http.HttpFieldPreEncoder)";resolution:=optional;cardinality:=multiple,
+                                    
osgi.serviceloader;filter:="(osgi.serviceloader=org.eclipse.jetty.io.ssl.ALPNProcessor$Server)";resolution:=optional;cardinality:=multiple
+                                </Require-Capability>
+                                <Include-Resource>
+                                    
{maven-resources},${project.build.directory}/serviceloader-resources
+                                </Include-Resource>
+                                <_removeheaders>
+                                    
Private-Package,Conditional-Package,Include-Resource
+                                </_removeheaders>
+                            </instructions>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+
+            <plugin>
+                <artifactId>maven-surefire-plugin</artifactId>
+                <configuration>
+                    <redirectTestOutputToFile>true</redirectTestOutputToFile>
+                </configuration>
+            </plugin>
+            <!-- plugins for paxexam integration tests -->
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-failsafe-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <id>integration-test</id>
+                        <phase>integration-test</phase>
+                        <goals>
+                            <goal>integration-test</goal>
+                        </goals>
+                    </execution>
+                    <execution>
+                        <id>verify</id>
+                        <phase>integration-test</phase>
+                        <goals>
+                            <goal>verify</goal>
+                        </goals>
+                    </execution>
+                </executions>
+                <configuration>
+                    <redirectTestOutputToFile>true</redirectTestOutputToFile>
+                    <systemPropertyVariables>
+                        <jetty.version>${jetty.version}</jetty.version>
+                        
<bundle.filename>${basedir}/target/${project.build.finalName}.jar</bundle.filename>
+                        <pax.vm.options>${pax.vm.options}</pax.vm.options>
+                    </systemPropertyVariables>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
+    <dependencies>
+        <dependency>
+            <groupId>javax.servlet</groupId>
+            <artifactId>javax.servlet-api</artifactId>
+            <version>3.1.0</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>osgi.core</artifactId>
+            <version>6.0.0</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.service.cm</artifactId>
+            <version>1.5.0</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.service.event</artifactId>
+            <version>1.3.1</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.service.metatype</artifactId>
+            <version>1.4.0</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.service.useradmin</artifactId>
+            <version>1.1.0</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.eclipse.jetty.ee10</groupId>
+            <artifactId>jetty-ee10-servlet</artifactId>
+            <version>${jetty.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.eclipse.jetty</groupId>
+            <artifactId>jetty-server</artifactId>
+            <version>${jetty.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.eclipse.jetty</groupId>
+            <artifactId>jetty-util</artifactId>
+            <version>${jetty.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.eclipse.jetty</groupId>
+            <artifactId>jetty-util-ajax</artifactId>
+            <version>${jetty.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.eclipse.jetty</groupId>
+            <artifactId>jetty-jmx</artifactId>
+            <version>${jetty.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.eclipse.jetty</groupId>
+            <artifactId>jetty-security</artifactId>
+            <version>${jetty.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.eclipse.jetty.http2</groupId>
+            <artifactId>jetty-http2-server</artifactId>
+            <version>${jetty.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.eclipse.jetty.http2</groupId>
+            <artifactId>jetty-http2-common</artifactId>
+            <version>${jetty.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.eclipse.jetty.http2</groupId>
+            <artifactId>jetty-http2-hpack</artifactId>
+            <version>${jetty.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.eclipse.jetty</groupId>
+            <artifactId>jetty-alpn-server</artifactId>
+            <version>${jetty.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.eclipse.jetty.ee10.websocket</groupId>
+            <artifactId>jetty-ee10-websocket-jakarta-server</artifactId>
+            <version>${jetty.version}</version>
+            <optional>true</optional>
+        </dependency>
+        <dependency>
+            <groupId>org.eclipse.jetty.ee10.websocket</groupId>
+            <artifactId>jetty-ee10-websocket-jetty-server</artifactId>
+            <version>${jetty.version}</version>
+            <optional>true</optional>
+        </dependency>
+        <dependency>
+            <groupId>org.eclipse.jetty.websocket</groupId>
+            <artifactId>jetty-websocket-jetty-server</artifactId>
+            <version>${jetty.version}</version>
+            <optional>true</optional>
+        </dependency>
+        <dependency>
+            <groupId>org.eclipse.jetty</groupId>
+            <artifactId>jetty-session</artifactId>
+            <version>${jetty.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.service.servlet</artifactId>
+            <version>2.0.0</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.service.http</artifactId>
+            <version>1.2.1</version>
+           <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.service.http.whiteboard</artifactId>
+            <version>1.1.1</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.felix</groupId>
+            <artifactId>org.apache.felix.http.base</artifactId>
+            <version>5.1.8</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.felix</groupId>
+            <artifactId>org.apache.felix.http.wrappers</artifactId>
+            <version>1.1.6</version>
+        </dependency>
+        <dependency>
+            <groupId>commons-fileupload</groupId>
+            <artifactId>commons-fileupload</artifactId>
+            <version>1.5</version>
+            <optional>true</optional>
+        </dependency>
+        <dependency>
+            <groupId>commons-io</groupId>
+            <artifactId>commons-io</artifactId>
+            <version>2.11.0</version>
+        </dependency>
+    <!-- Testing -->
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <version>4.13.2</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.mockito</groupId>
+            <artifactId>mockito-core</artifactId>
+            <version>5.7.0</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.service.log</artifactId>
+            <version>1.3.0</version>
+            <scope>test</scope>
+        </dependency>
+
+        <!-- an OSGi framework -->
+        <dependency>
+            <groupId>org.apache.felix</groupId>
+            <artifactId>org.apache.felix.framework</artifactId>
+            <version>7.0.5</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>javax.inject</groupId>
+            <artifactId>javax.inject</artifactId>
+            <version>1</version>
+            <scope>test</scope>
+        </dependency>
+
+        <!-- Pax Exam -->
+        <dependency>
+            <groupId>org.ops4j.pax.exam</groupId>
+            <artifactId>pax-exam</artifactId>
+            <version>${org.ops4j.pax.exam.version}</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.ops4j.pax.exam</groupId>
+            <artifactId>pax-exam-cm</artifactId>
+            <version>${org.ops4j.pax.exam.version}</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.ops4j.pax.exam</groupId>
+            <artifactId>pax-exam-container-forked</artifactId>
+            <version>${org.ops4j.pax.exam.version}</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.ops4j.pax.exam</groupId>
+            <artifactId>pax-exam-junit4</artifactId>
+            <version>${org.ops4j.pax.exam.version}</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.ops4j.pax.exam</groupId>
+            <artifactId>pax-exam-link-mvn</artifactId>
+            <version>${org.ops4j.pax.exam.version}</version>
+            <scope>test</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>org.eclipse.jetty</groupId>
+            <artifactId>jetty-client</artifactId>
+            <version>${jetty.version}</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.eclipse.jetty.websocket</groupId>
+            <artifactId>jetty-websocket-jetty-client</artifactId>
+            <version>${jetty.version}</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.awaitility</groupId>
+            <artifactId>awaitility</artifactId>
+            <version>4.2.1</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-simple</artifactId>
+            <version>2.0.13</version>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
+</project>

Added: release/felix/org.apache.felix.http.jetty12-1.0.18.pom.asc
==============================================================================
--- release/felix/org.apache.felix.http.jetty12-1.0.18.pom.asc (added)
+++ release/felix/org.apache.felix.http.jetty12-1.0.18.pom.asc Sun Nov 17 
09:04:36 2024
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmc04fEACgkQP89Sn/Ly
+egZ4BA/+IfDftvtDrMZK+Jdv8Cu8c3ZxjHga9WIR6jyIJu4X+MppG9dfdY7/2XKu
+K9ubTHxa6MptXP5Bf7d2tezDfvTyl9kjl5SGANDvWON4v0rY1CRoXwbAgSb+nZoq
+/wOr2wn/hD2I3KRQ9McuIeTw01rZ/xnjbcGWj4BBFeIrzZNEjNSzvct7mapBW/TY
+pLMcZxNqEURdLq7EwF4udY9HYr9VhaamMLLkiAG5P0AcZZXVV05Z1Y3+4+XcdvYT
+t2F4LVf9/IKzxeP1sMGi4/UM58g9QGVW3CAEUp6UlzBiP1bECzffC3ZRP1OFQkob
+awRzZMf0EFYK7Z1p0gQ+E0SzKunyf3A+4YTYnzRToDrFSe3D4pg9eM8sH9+uriYV
+EdkbteF00pkt1cQ4D722qMSSDNRUQpUJS2S41xLfTedQcOVIaxrixmee4XyFeDm2
+ntrxIqhjvwLFwlFkW88wkvTdYVr2rxZZIOg7za90VB+IGrxWpNo8W8FlsQwrhZGN
+MrpnHBUTmREp+1STBP4lVrQEcbjDfO5DBK3Wxl9MmT1qX9zwOlDWnsFQZMKXmwk3
+NPkO8Hcm/FuQ8Ijv8c2QSFVoCDp4v6PWiKooRwXNU9kZTt2XKhTBnm/CmZ4upHzP
+R08Ne2jfgw/0bJ8DIVPe2s/NUhNxis3SfFDiTTG46nUmK+OIcAI=
+=Ce+2
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.http.jetty12-1.0.18.pom.sha1
==============================================================================
--- release/felix/org.apache.felix.http.jetty12-1.0.18.pom.sha1 (added)
+++ release/felix/org.apache.felix.http.jetty12-1.0.18.pom.sha1 Sun Nov 17 
09:04:36 2024
@@ -0,0 +1 @@
+a4efb13de06b90f76f2472caa254248d7bccfd81
\ No newline at end of file

Added: release/felix/org.apache.felix.http.jetty12-1.0.18.pom.sha512
==============================================================================
--- release/felix/org.apache.felix.http.jetty12-1.0.18.pom.sha512 (added)
+++ release/felix/org.apache.felix.http.jetty12-1.0.18.pom.sha512 Sun Nov 17 
09:04:36 2024
@@ -0,0 +1 @@
+fe8e7fc3a67e65afdb3701043af1553943dbb02c44ba21add270bda68c7dc404f3ab0a95a4cb6b48a706844368a12037a3e4e09f2096b277e92295565b74eab0
  org.apache.felix.http.jetty12-1.0.18.pom

Added: release/felix/org.apache.felix.http.wrappers-1.1.8-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: release/felix/org.apache.felix.http.wrappers-1.1.8-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/felix/org.apache.felix.http.wrappers-1.1.8-javadoc.jar.asc
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.1.8-javadoc.jar.asc (added)
+++ release/felix/org.apache.felix.http.wrappers-1.1.8-javadoc.jar.asc Sun Nov 
17 09:04:36 2024
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmc04ZIACgkQP89Sn/Ly
+egZP6Q//Vj6gL9wKwAxOxji6WcSA/fPB+nMiFW1TQoZsXIAcdHCq6jQVHCt+oWT9
+qHgk7BwAz5bH80U+ZhTrPquqPl61XCgGFSXXIZDpZD7EPAgzq4CmZxCmZj64F/p/
+fKal0m6xahqJ5udlXDdIrMBt8axoD9q3O9zxMFZTw7QOjX8K/M1J6WuxcfwnfW/S
+rbb/RXbLQu4M1tDVXmR0PQtryvWhJgBMXgD2LAtIBwQpGdQ210C8r1Tzqmsx1Iej
+2DXBeXGL2BtQUvRZk9166b4qcZP1FJh2GGVhJIZdpspqXlUa2DKsLAE0L1sMNr+D
+oS9Nv1I6dZ5OOBVVgJr0m36i8zWsO3FObRCWi7H7uc0aNnBejwohQeK1wFnl8lVK
+gphCO1ci2Hi/7sThChf0hj/XixMriSTbtwi6MugsPeA2inxVViGYSMFxSdnXPVxJ
+AEM92fpmQdxImSPBXKON8U82K3iEWw9aKw7tmtOjepke/5BGZ8f+q6nGQJcrwkg4
+gZdsllUhO7iztjqj2HcsdZZazOOYkFpOnhVElZTXaRLiHywm7NfHaFUmIE+ARZPU
+FgTCG3ptuc5R8Y6DzeDl2H0Yh6gq+GQfb3MG85JY/5l3bD+BXQYfCEfGFasr7Bkq
+k/+BbzMm0UPgP60ubjqVsAOMXEtoJP1woccTnqAQfGurYJzzt7M=
+=iWsS
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.http.wrappers-1.1.8-javadoc.jar.sha1
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.1.8-javadoc.jar.sha1 (added)
+++ release/felix/org.apache.felix.http.wrappers-1.1.8-javadoc.jar.sha1 Sun Nov 
17 09:04:36 2024
@@ -0,0 +1 @@
+c7f93e7f1ad150a4ade75e6fde6be8e90f5984ed
\ No newline at end of file

Added: release/felix/org.apache.felix.http.wrappers-1.1.8-javadoc.jar.sha512
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.1.8-javadoc.jar.sha512 
(added)
+++ release/felix/org.apache.felix.http.wrappers-1.1.8-javadoc.jar.sha512 Sun 
Nov 17 09:04:36 2024
@@ -0,0 +1 @@
+d20773fee96b680f27cc97618982b29b58248dc1dd85e533a2f71fa263f3f5b75d3f5669e81476a3d646bd92d511fcb4a742bde81815d40338631763a2856e97
  org.apache.felix.http.wrappers-1.1.8-javadoc.jar

Added: release/felix/org.apache.felix.http.wrappers-1.1.8-source-release.tar.gz
==============================================================================
Binary file - no diff available.

Propchange: 
release/felix/org.apache.felix.http.wrappers-1.1.8-source-release.tar.gz
------------------------------------------------------------------------------
    svn:mime-type = application/x-gzip

Added: 
release/felix/org.apache.felix.http.wrappers-1.1.8-source-release.tar.gz.asc
==============================================================================
--- 
release/felix/org.apache.felix.http.wrappers-1.1.8-source-release.tar.gz.asc 
(added)
+++ 
release/felix/org.apache.felix.http.wrappers-1.1.8-source-release.tar.gz.asc 
Sun Nov 17 09:04:36 2024
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmc04ZIACgkQP89Sn/Ly
+egZAZQ/+ODPmg4haUA1XNFQzY1G3s7WjYlWm/guMGXj7Maa4BhDwqRm3u/BRfsaN
+c8ptQeRCXg1Ti4Zuf0PGFpsrkFTrW2t2K1yvilfQEGwm5I1GdIwTdTmVuhTZ0iQ+
++crKEVeHaA8rVtoMnZiVDUnfxopjZnykr2rC/XdbNQTz+Hof8dAmDVmv7+0eITmy
+0GzQSPmQAatOZJxPDLgAR8n48vx8g7rg474gJrgmHcZe2+PVLIDEWfYZa0ui7tEN
+6duPdik/2DVmm1YdXA/JpQ4ZpBoQA4OzYxhpgaRgQm5cBsKs9WHO+5lkzFcUMc0v
+snqH4Rd+1g60ZVi3Ru2S7bEoXTMgo9q05/+5/Mek3Hdosp2zs5mvYPGSTJMkxEV5
+GFIe5j2pju2tl3O2Wrd40OImlZxxOEt8Ajc7jXxzvZw1WyQOIKgrPSFk3r9zvBoR
+mMPfuYwRUXeuiEJ0YI4itr7y/8eRLfthMElVbSrdlRr5M5QxiQp15i5Khj+Hc+UL
+jAZUAYcHQchDR9tm5+74z93EswEmZmCNusJ8iVV28RAmbxt9jG11VumMgeqA+Cp7
++8+ZOPWzakS3CCsdGRBN2KBTsBU2hfpzKk1bAIYKEz0Z8gdKUHqOZyez6XLyBkS0
+3NVMxI1JZNQ5vXoXuIHy+e8Ji8sO2e7loGcl9E7a8KxIJ4gT9ls=
+=A9qd
+-----END PGP SIGNATURE-----

Added: 
release/felix/org.apache.felix.http.wrappers-1.1.8-source-release.tar.gz.sha1
==============================================================================
--- 
release/felix/org.apache.felix.http.wrappers-1.1.8-source-release.tar.gz.sha1 
(added)
+++ 
release/felix/org.apache.felix.http.wrappers-1.1.8-source-release.tar.gz.sha1 
Sun Nov 17 09:04:36 2024
@@ -0,0 +1 @@
+75ffbafc1fda9a9910b3942e150762d6e520eb81
\ No newline at end of file

Added: 
release/felix/org.apache.felix.http.wrappers-1.1.8-source-release.tar.gz.sha512
==============================================================================
--- 
release/felix/org.apache.felix.http.wrappers-1.1.8-source-release.tar.gz.sha512 
(added)
+++ 
release/felix/org.apache.felix.http.wrappers-1.1.8-source-release.tar.gz.sha512 
Sun Nov 17 09:04:36 2024
@@ -0,0 +1 @@
+a21019d4d362d9d425488c49ebf4275b4064928346bb9a3fddb3318376a4d8c4e2af3b000fa4420df63bba002c3f299534bd06bd77e9d935429e6ad85866c138
\ No newline at end of file

Added: release/felix/org.apache.felix.http.wrappers-1.1.8-source-release.zip
==============================================================================
Binary file - no diff available.

Propchange: 
release/felix/org.apache.felix.http.wrappers-1.1.8-source-release.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/felix/org.apache.felix.http.wrappers-1.1.8-source-release.zip.asc
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.1.8-source-release.zip.asc 
(added)
+++ release/felix/org.apache.felix.http.wrappers-1.1.8-source-release.zip.asc 
Sun Nov 17 09:04:36 2024
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmc04ZIACgkQP89Sn/Ly
+egZOcQ/7BT+uR2IKFUsRboaGjP+j/RWavS+Ka2eCTO5L4NlxNrxrgZrW5FNaxhCm
+OQKxHebLd45TDT+thZtI60xmPJx54n8SRNDajHhPm6bJAvXXv45RG4qYltkGh2wc
+t+MW0I01AyDk0c6tMPeHjQJ/i7aHg/8tUl3DyGh1+8XDHp+JATjukeJ+0YU1dRs9
+ZQehvFlazXTjSsqOhFzACQ99Rn9JCfPWklSuWVo0XYU+8fECYdnL6ryoE1pjohjJ
+4RAUs9prbC6/phyl6lNYa1zjF36cuY+i5VB4qLAvDUaJUCNE5cOSDSGKXdVOKaGf
+rSb0PIldXvmfBAwwoY0AAlsFh4CryGCkUjLe7Rf5joxvJOAq6bW1J9ZfXCZzuntH
+qvw3yoymzZKdIs7A0a3qWJM57NRBMPsW2CduTiDtF9K8JDqfPSCNTdJ4vspl7AJG
+o+lQO4wJuePXn/VCxvchPKwKpau4MP6f+gk3yeBQ2rKGMcy7714UwgHs2rWiKEZW
+rE6n8bVj8jbbNPVFptjLY5g9OF7GLdf7kg/3D1awr10/npHTqLI1282uXXhv/w/J
+9/07lkg+WVjkfMgahBOQaSmYBdt6eDrUBp2jL4OmUHbTxg/95UDob25BhZwEPyzW
+7ZxMnMR5Oc5Q9Kd/+Dj5Q+vjFd28sZs/4N/6IWHi+dxFUYdhFjY=
+=NBU/
+-----END PGP SIGNATURE-----

Added: 
release/felix/org.apache.felix.http.wrappers-1.1.8-source-release.zip.sha1
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.1.8-source-release.zip.sha1 
(added)
+++ release/felix/org.apache.felix.http.wrappers-1.1.8-source-release.zip.sha1 
Sun Nov 17 09:04:36 2024
@@ -0,0 +1 @@
+1aa62d5a87691b9de4a79a5b8edd58f29b4d796f
\ No newline at end of file

Added: 
release/felix/org.apache.felix.http.wrappers-1.1.8-source-release.zip.sha512
==============================================================================
--- 
release/felix/org.apache.felix.http.wrappers-1.1.8-source-release.zip.sha512 
(added)
+++ 
release/felix/org.apache.felix.http.wrappers-1.1.8-source-release.zip.sha512 
Sun Nov 17 09:04:36 2024
@@ -0,0 +1 @@
+92ffcd4bd71200d94f746cfc3cb36022a825223dbb3d664e1782f031ccf665c4681b47e1a64be30c1b47b1cebe27e13d455c9859d0a709a9a830a87eecb8906a
\ No newline at end of file

Added: release/felix/org.apache.felix.http.wrappers-1.1.8-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: release/felix/org.apache.felix.http.wrappers-1.1.8-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/felix/org.apache.felix.http.wrappers-1.1.8-sources.jar.asc
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.1.8-sources.jar.asc (added)
+++ release/felix/org.apache.felix.http.wrappers-1.1.8-sources.jar.asc Sun Nov 
17 09:04:36 2024
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmc04ZIACgkQP89Sn/Ly
+ega0OQ//ZfLN1LHZdvjy8EtYu2WMsshf7mZ/3kxynIBVwtzN7pIw7artnodFa3U6
+PjybY9uW2xIJWJokF2i9koAQM5/nCBt65b5PquxgiEZYUyAt9Vtf+OjhbvZLl4xs
+PnwBi6Gme7jBNJNfSCUEkENSzTuarcVQQX1WjvGo5qPZB0b0CND2g/pWCsyeOyTF
+lsiynocpLqfuNxV81k/+3MSKoRU9nVysLCDti2V0Gda7Wa1bmuF2SbV0Nx4Dg8NM
+4+E/Bka03Egsfk1tkmG2v+Ehi9ndjDQDl9OPJ7P8atbXkXU6iPZc5hfW28JG4/gc
+SUDHutFbyN6/3iQKTobUK7RGMNgkX+pQr990DqimXSPj/jXBmgoXxnTSaubDmTuH
+PYVyc1C7TsGHK3ml6C7c9/rG0ARBYT6p0Svdg0xqvwPX2Ile5zp+QB7NveAPS2Ls
+UYesB5tf2CYZ0T5oX05juoGxsdg4q7Dm2NAneC/QMvYbxiT6IkKsskdcKDdEqnYW
+1cmvfYxm1+hcxaTu5M6cOhMTf0OJgQVmWGDbwAfmNUhWneksmj7lPq45mI/W9Kxs
+NEnc/nY/IXSlKpcWfKfGVu7ckPJERZqbn0lLfFSncVbGzT3GjfsPwygmWCdhPZAM
+ARgrfIxI7RVjmVWR+R06POtZBTpfXJg83Joe7r2l5JWMfAKA4/0=
+=XdgF
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.http.wrappers-1.1.8-sources.jar.sha1
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.1.8-sources.jar.sha1 (added)
+++ release/felix/org.apache.felix.http.wrappers-1.1.8-sources.jar.sha1 Sun Nov 
17 09:04:36 2024
@@ -0,0 +1 @@
+5298621fd1c2d4cddb4a19553291d42f6356a162
\ No newline at end of file

Added: release/felix/org.apache.felix.http.wrappers-1.1.8-sources.jar.sha512
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.1.8-sources.jar.sha512 
(added)
+++ release/felix/org.apache.felix.http.wrappers-1.1.8-sources.jar.sha512 Sun 
Nov 17 09:04:36 2024
@@ -0,0 +1 @@
+e2546cd36a89cca585201b646ecf7dcfdf7d6dc4e6986a99ff51d767f622449e4aceea14560df4b43e03d4f16f22563c9f97be319f5b16108cde72dcc77d5b88
  org.apache.felix.http.wrappers-1.1.8-sources.jar

Added: release/felix/org.apache.felix.http.wrappers-1.1.8.jar
==============================================================================
Binary file - no diff available.

Propchange: release/felix/org.apache.felix.http.wrappers-1.1.8.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/felix/org.apache.felix.http.wrappers-1.1.8.jar.asc
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.1.8.jar.asc (added)
+++ release/felix/org.apache.felix.http.wrappers-1.1.8.jar.asc Sun Nov 17 
09:04:36 2024
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmc04Y0ACgkQP89Sn/Ly
+egZHHBAAqkKoZtO30ADM/Bjhhx9oenRabm/8Y8c+gDd4O4fnhOOqWntrDE/XmBDr
+XiFTEZzPj/4CMGAT1JAMJMYEycUoRSjp6zjLOBQfrNl61MHaRZ6XOwpDDEPGaSwT
+gGWOixHUu7CSv9aFD6IRM91F1iqiBZcgughV+l/IhwkGTyVudaPCIzN2PF0NF/24
+3dWcPfncuwbgMYomXJKarqgrexreLlS0mL1v4G2dncMnQ7E/lRQQK0wXt0YJ+NL/
+B9Do4Leh9AMWZklYdJeKP6hRpCGUTBAMORFXerJ5nO8CqHudbbgzx1Vy8QDeDrQv
+lJyUNqMSzltAuyNnqzdBZrDRL/8n3a0hidDeS9GfSpgUZ+Pp+p4AX6UsI+prifNI
+vFofz0ho0QO+gyYHYioqfjR2EvxVHqmlGxn45lKy5ASiGGIyupUXaUy2wSN6vCGn
+rxx4lIs82WGnNcZUcOCbi1AI2Pb5M76/9S4lZi1Ec625L4l4mOi12pVV/VhWPzoB
+x2INMnDQuNbFoYoHlITsMDeQ4qoTp2ExVFdVaFg7fHtvi6hECsB8lJ6QwXQKWpF0
+++jaJYUIkXBk1CgE0cPN469d0PWdp3uQNrQwUHnsGD/vWY9A4g05RTQ+Owko3+ln
+uvlwV2QWVfn9M0Oy7yxoGerb492/fy61UsVl7Re28+TlgdYTQ9Y=
+=4Kb5
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.http.wrappers-1.1.8.jar.sha1
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.1.8.jar.sha1 (added)
+++ release/felix/org.apache.felix.http.wrappers-1.1.8.jar.sha1 Sun Nov 17 
09:04:36 2024
@@ -0,0 +1 @@
+50d882fb5f7cd5443fd6e952d7302ed60b5f464b
\ No newline at end of file

Added: release/felix/org.apache.felix.http.wrappers-1.1.8.jar.sha512
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.1.8.jar.sha512 (added)
+++ release/felix/org.apache.felix.http.wrappers-1.1.8.jar.sha512 Sun Nov 17 
09:04:36 2024
@@ -0,0 +1 @@
+4e0ed692de0a82383e571564223defd4dc927ccbb2427c74f960b815c123df1f977d80a633380fc5f22b79a4177c1f1f23fe996f4e862a5306c75b52728cd70b
  org.apache.felix.http.wrappers-1.1.8.jar

Added: release/felix/org.apache.felix.http.wrappers-1.1.8.pom
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.1.8.pom (added)
+++ release/felix/org.apache.felix.http.wrappers-1.1.8.pom Sun Nov 17 09:04:36 
2024
@@ -0,0 +1,115 @@
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+    
+    http://www.apache.org/licenses/LICENSE-2.0
+    
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
+
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.apache.felix</groupId>
+        <artifactId>felix-parent</artifactId>
+        <version>9</version>
+        <relativePath>../pom/pom.xml</relativePath>
+    </parent>
+
+    <name>Apache Felix Http Wrappers</name>
+    <artifactId>org.apache.felix.http.wrappers</artifactId>
+    <version>1.1.8</version>
+    <packaging>bundle</packaging>
+
+    <scm>
+         
<connection>scm:git:https://github.com/apache/felix-dev.git</connection>
+         
<developerConnection>scm:git:https://github.com/apache/felix-dev.git</developerConnection>
+         <url>https://gitbox.apache.org/repos/asf?p=felix-dev.git</url>
+      <tag>org.apache.felix.http.wrappers-1.1.8</tag>
+  </scm>
+
+    <properties>
+        <felix.java.version>11</felix.java.version>
+    </properties>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-bundle-plugin</artifactId>
+                <version>5.1.9</version>
+                <extensions>true</extensions>
+                <executions>
+                    <execution>
+                        <id>bundle</id>
+                        <phase>package</phase>
+                        <goals>
+                            <goal>bundle</goal>
+                        </goals>
+                    </execution>
+                    <execution>
+                        <id>baseline</id>
+                        <goals>
+                          <goal>baseline</goal>
+                        </goals>
+                    </execution>
+                </executions>
+                <configuration>
+                    <instructions>
+                        
<Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
+                        <Bundle-Version>${project.version}</Bundle-Version>
+                    </instructions>                        
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.jetbrains</groupId>
+            <artifactId>annotations</artifactId>
+            <version>16.0.2</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>osgi.annotation</artifactId>
+            <version>6.0.1</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>javax.servlet</groupId>
+            <artifactId>javax.servlet-api</artifactId>
+            <version>4.0.1</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>jakarta.servlet</groupId>
+            <artifactId>jakarta.servlet-api</artifactId>
+            <version>6.0.0</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <version>4.13.2</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.mockito</groupId>
+            <artifactId>mockito-core</artifactId>
+            <version>5.7.0</version>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
+</project>

Added: release/felix/org.apache.felix.http.wrappers-1.1.8.pom.asc
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.1.8.pom.asc (added)
+++ release/felix/org.apache.felix.http.wrappers-1.1.8.pom.asc Sun Nov 17 
09:04:36 2024
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmc04ZEACgkQP89Sn/Ly
+egYZrxAAg+K6u3aD7JYEc7FYI2/cJ0T/Wz4tGHHDXQrpsoVs9N1txUL3oDjNsLgG
+UELJv2pB1V316ut+Ip9L9l0uonmlG7yNT9fK0zg8ed8K/t+Xcn4H1JkiuccDMfv5
+toMciFEkxjuW1BhPWY7n1ZEm6Q/b1slLPnGa/o9oWZqiOmlWrCkTMvYbE64wQ7dF
+08rGHhM/FHr8hMzMcNaBnU64Hu/gDTl1T+C++Gmsg6z7d2klapRBEIRm058/fkxT
++6dYpC19z2d68sPMjWrjUbgJdANIHH8QXQk+z+5opMBJ5tPRvZJNQMZy1opuyg9k
+wE/KPkDhEaZdN8CKvYSOomELKx9+7ysmvnttzDputdOzGRut1AaSe+p9LgIEsNoh
+UYmz6rwWypOju4EIMXnUNlu+lWWVbzP0ykQvnB7UFjVPZi1g5kHOxUf5Oq89yCJb
+G+nDy9Gigj8Xw2IJdanJazc8X/f1AlgtBv1s/D+TiO+UqFH3p9L7PT0lKeXwT2EP
+FwtylEFDtRo4uPVAfZA3LmKjV7DAQahBKFIAx2N4zowlUbezFjyxb4BI8igXNpIh
+n5mpiZXCQa5nuwWkaUNtOTTW+LWZfZaaYxtLpx2CnMF0EL8OLnuNYlagWee6PZlN
+uhRl4DTyQkYNilvF7Lz/8/rIBysEjfCLTtcmoX/SXR7E1/nclA8=
+=eoQz
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.http.wrappers-1.1.8.pom.sha1
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.1.8.pom.sha1 (added)
+++ release/felix/org.apache.felix.http.wrappers-1.1.8.pom.sha1 Sun Nov 17 
09:04:36 2024
@@ -0,0 +1 @@
+120f66c998ae2fa23180fe72aa99d68a8246b37e
\ No newline at end of file

Added: release/felix/org.apache.felix.http.wrappers-1.1.8.pom.sha512
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.1.8.pom.sha512 (added)
+++ release/felix/org.apache.felix.http.wrappers-1.1.8.pom.sha512 Sun Nov 17 
09:04:36 2024
@@ -0,0 +1 @@
+09963fe428310901dd6f3f2dd5fadf268547e488835963153053135885076952824fcd6e4ce6f16948b8761e75acbae8b9f829d633a10a114d1d6929faad38b3
  org.apache.felix.http.wrappers-1.1.8.pom


Reply via email to