Added: release/felix/org.apache.felix.http.jetty12-1.0.12.pom
==============================================================================
--- release/felix/org.apache.felix.http.jetty12-1.0.12.pom (added)
+++ release/felix/org.apache.felix.http.jetty12-1.0.12.pom Sun Jun 23 11:44:57 
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.12</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.12</tag>
+  </scm>
+
+    <properties>
+        <felix.java.version>17</felix.java.version>
+        <jetty.version>12.0.10</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.12.pom.asc
==============================================================================
--- release/felix/org.apache.felix.http.jetty12-1.0.12.pom.asc (added)
+++ release/felix/org.apache.felix.http.jetty12-1.0.12.pom.asc Sun Jun 23 
11:44:57 2024
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmZz08cACgkQP89Sn/Ly
+egaP1Q/+KpUFYU66IlbIQYEc6tLRBWHCGUofaqj53fahVQu+hlSkuBSZMnIlBex0
+Pt0nOCkYiN3A0Wez9vj9gdXANCuJ5/y4YTjJLrUShQaciEP48daVKMySuvctmRFt
+Cw7A2D1VjlPXfwuvcDx48LwWRsch9OXEJcloCp2EOlMoglWNRM8dInpUHVcV5IRX
+Ool3YGkkY+GjRoBXF2wb0ATOzxaqyJI4qzsVlbqfrc+NlyIM7ndePmAtXetTpUTU
+NR6OdhgJJYUhWDmOthFpuoQ43+HtuTP2G2E09RCi7u87vK44A3VAbV0NMZLN0tgm
+PG6nm5fB/GH0j5+y5p8pC7lETvUYMksdKp9PBaUCu4PCv6sdV50xVJ1fMpzneceJ
+STQpCGQ5qwcS3l6rJVdcmW+6nV6l7ZwNSGFlBkumVJPatGW/xbOrLSEI4CF4iY8A
+PTrj5uoNPS1USjkjuOqQl/oJmlur6ukBMtAe9YNGaweymorNJNv5ldbe9EYAZj2s
+m1TOe7QD6+G1XRQCHn42aGEI9cOqsdnYTTVBF4LSmy6OSzGR9jgU9rEpzDuHvdlC
+q4cDD8ZeG+hZFyR3eNlWLNwGlqJsntuOYJZi1XKoUqEiG6Tp3Y7et2ehe1yntfwL
+qsUUoDtz3F73Xj6QJEmO5SPVwTd7LzqgUFgHsu+9oDcB3JwNZAQ=
+=c41b
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.http.jetty12-1.0.12.pom.sha1
==============================================================================
--- release/felix/org.apache.felix.http.jetty12-1.0.12.pom.sha1 (added)
+++ release/felix/org.apache.felix.http.jetty12-1.0.12.pom.sha1 Sun Jun 23 
11:44:57 2024
@@ -0,0 +1 @@
+7d9fadb27a920a7804119d3118dca5f6d3c6b422
\ No newline at end of file

Added: release/felix/org.apache.felix.http.jetty12-1.0.12.pom.sha512
==============================================================================
--- release/felix/org.apache.felix.http.jetty12-1.0.12.pom.sha512 (added)
+++ release/felix/org.apache.felix.http.jetty12-1.0.12.pom.sha512 Sun Jun 23 
11:44:57 2024
@@ -0,0 +1 @@
+52a30b43bff5d998f1c06dbfc3a9f1ad0c4d1ffbabdacc0dca1a9b905dbf3d303e18ecf49d8a621f2a03a9fa092777ac42485145d5242317a8ed4033de05cea6
  org.apache.felix.http.jetty12-1.0.12.pom

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

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

Added: release/felix/org.apache.felix.http.wrappers-1.0.6-javadoc.jar.asc
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.0.6-javadoc.jar.asc (added)
+++ release/felix/org.apache.felix.http.wrappers-1.0.6-javadoc.jar.asc Sun Jun 
23 11:44:57 2024
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmZz0uwACgkQP89Sn/Ly
+egZroA//RawifvpsQzUg1Ydk1A2XAp/o+EX5dItgH3TWFfpblq6sAoh0+es8FK9v
+bnKDooihrrXjCkdx23Jjefjt+CvM0HcG9dHYRtnsL5VOEE8ekkrZu3gPhw+YVBAf
+pmqjRcqFEilkfMnxvCIwkd08HCM2KB4gy6+zHs52WbjZeBfnferw96gPau89ejUC
+gW1G6W3iWKaSYZtpC1Uu38saOkQTxRJNgW+D8rryYGbQ8Vovd8A4AjWBMFiNI+15
+BdS5HtAwSusaUgkMcjzq7fuv1wDHXtHzEgAXo40pMTJqD8J28HIyejCnp4OKDM7c
+Wc0Pi3S2e2ApPgeiFMBFTFScBwSlZJYpE8gGRjdM5sa9nvoJ5WBX7HtbZKQNCrJc
+2MGgbWmbL5q7Yq2oLWK8syklaya/ombqKSpw64BtBCpYhwInjH9lqnFgTI3w/Dk7
+OX68/mDny2dJJKFMt0McZqdykOAsbhbBfpKNoRWHtgii8l7UvGP8F77bHlnTxhbd
+mFmkndkedhah+P016vN3nozCZswbp/oZk0n2FL4L5thaHWBrOtwTBv5T1aT3Wnli
+IrawWs7ntGSh+C3gKCXeM+Xtpj6YWzap2jjfXzRIF3HpG12NsGbYdGWe5+s0Tc5T
+7FmnJkVaflNqWhN4GfNOBvZl0M4RNT4DOcBYbgRskhDL17HaLq8=
+=WEXz
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.http.wrappers-1.0.6-javadoc.jar.sha1
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.0.6-javadoc.jar.sha1 (added)
+++ release/felix/org.apache.felix.http.wrappers-1.0.6-javadoc.jar.sha1 Sun Jun 
23 11:44:57 2024
@@ -0,0 +1 @@
+a193a2ab07b9d46778e0beedb3e6a45b6933474a
\ No newline at end of file

Added: release/felix/org.apache.felix.http.wrappers-1.0.6-javadoc.jar.sha512
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.0.6-javadoc.jar.sha512 
(added)
+++ release/felix/org.apache.felix.http.wrappers-1.0.6-javadoc.jar.sha512 Sun 
Jun 23 11:44:57 2024
@@ -0,0 +1 @@
+23ea159cd4898647b6368a8196ef89cb8a555a65ac73ece6e372277b6627a639f5d2008372c8c2ea390be3051eec1433e4ec6e42166e4fa779e28661bbc7ba40
  org.apache.felix.http.wrappers-1.0.6-javadoc.jar

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

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

Added: 
release/felix/org.apache.felix.http.wrappers-1.0.6-source-release.tar.gz.asc
==============================================================================
--- 
release/felix/org.apache.felix.http.wrappers-1.0.6-source-release.tar.gz.asc 
(added)
+++ 
release/felix/org.apache.felix.http.wrappers-1.0.6-source-release.tar.gz.asc 
Sun Jun 23 11:44:57 2024
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmZz0uwACgkQP89Sn/Ly
+egbT5A/9E4F4a7JLQhdQwg8908KsSGQxmoEAmi+GKtM7rpM87vij1H2i+gA51OCX
++BzX/zBbAaNFjHAizEOxhCDYWne7ouGnoW3+ZD5NrEkRlMP/PXyog/ZJ/i8RNcLT
+AYdMFGiqNNpTTGQPzh9GFO+XfZXiWMVxyXGwPah3L3cnuOXz6kMj3cztyEeZtw0x
+0E4XbbT7oBxIDKONSi3HiE2/BJl3X6BRUH+JsptG45P0heTKlWSPFF2dET5Ic+9L
+JxsYOQxz2B1EqwnHYmVgxV5L+CEtkWhGn6LL1Kg66YWQ/4Q/V6VWK/0YsWPf7l/v
+Tgl8tJIJiR5DEPyfK+287B92s9qscsp062+LRWWR5dl5ScvLyhOXadUqE5NQ65dv
+YEpaAuK/f+remEkaA/dc8kiUjAoPlcZwrFDSx9RgxLr3L488Vx4NZF89pyV9qDia
+qsBjxa601D+gzYB2UX1amAdtlOSUHyziOMKnl+luJ2yo1Ok7PMGfRMAnbjGLNvHO
+Jd49LOUhpEWpsjnqgyOkwO5KdY7FHi4VU3iWn8zNY396VLaAkJrv59tuH+u89nMd
+juYMn3ataYzWMlWRMcQCiTWlI3shikOBBfQmRbDrBR6shaf6CKZQvtw7nvu0lW4s
+I+ybT8oAruKk7FCHBLbbPUKbIWgnhY7kxJn/44hD2+VX+efPfsw=
+=/K1w
+-----END PGP SIGNATURE-----

Added: 
release/felix/org.apache.felix.http.wrappers-1.0.6-source-release.tar.gz.sha1
==============================================================================
--- 
release/felix/org.apache.felix.http.wrappers-1.0.6-source-release.tar.gz.sha1 
(added)
+++ 
release/felix/org.apache.felix.http.wrappers-1.0.6-source-release.tar.gz.sha1 
Sun Jun 23 11:44:57 2024
@@ -0,0 +1 @@
+f7afe4a98e0be9276be3733b3aea9ae5a97c4bfa
\ No newline at end of file

Added: 
release/felix/org.apache.felix.http.wrappers-1.0.6-source-release.tar.gz.sha512
==============================================================================
--- 
release/felix/org.apache.felix.http.wrappers-1.0.6-source-release.tar.gz.sha512 
(added)
+++ 
release/felix/org.apache.felix.http.wrappers-1.0.6-source-release.tar.gz.sha512 
Sun Jun 23 11:44:57 2024
@@ -0,0 +1 @@
+d7f0156bfe1747bd14d18b9a8ec49b3b61d576ceda18a3845fbca9e723a86f76f263bcccfdc7f6f8b7d1d85f92234ddca03faf6f3d584cb2434a98bc5c72f591
\ No newline at end of file

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

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

Added: release/felix/org.apache.felix.http.wrappers-1.0.6-source-release.zip.asc
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.0.6-source-release.zip.asc 
(added)
+++ release/felix/org.apache.felix.http.wrappers-1.0.6-source-release.zip.asc 
Sun Jun 23 11:44:57 2024
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmZz0uwACgkQP89Sn/Ly
+egbj4A/5AU5v8IHbQVboJEeVBRR91SMAmpWPwKE/m+jwjB7oc7ltf+0yoIwnG1++
+kHrYAg6YBKKScP3R431fadCNu8k6kzSsooVCt3GCAIoUQOunDL/u/4e5gW+HcPlI
+9dcz6+XYuTNt1Pq9/h7gO9AzV8V40s6nyQk2M4Xu8A3/3HB6gmQqOrv8NWKx+xtE
+anucPj28BVMgwxSBY/2pJjtayCsRbJ04O5u+v1pRsjKikR+Bz3j5iU9+zuogw6i7
+5xOeoeLd/wryrcMLc68VZ6wlXMk163lpiBlcFNmbc6EBhyXdYSg6bASICmwSHXTk
+ZunB71lNV0dx9wr6FtuJBMNcLDAfJJ++2LsRYtbeuVcP62FYVyGgBfdzBtde+VbM
+U7td94bnc15Sq6QwuOrlJSlYHg1WVvLo7nTThp9M7VSLyqfxCAAef9gOa9ycDJ+D
+4AI7KuURgKQXc6VRWagaFEi/4M3/eyYiJhAvDsXD6fEOVoi3924jj7cejq8zrtue
+tG8IZz7bl6iFZ/Nt2u5RKdgEc4RnXI3I9W0xrSLiI2PZwsnDQxHv6v7u3pG1p5v4
++JXWqmiEasXLTFxKP4C3+xQldS8OeQ/W4xR+MO/v3LEJ5l9wpnBP1nGZGxeNYeYq
+KARakSMldA3Poiz2BmbnmGTJgdcHesXqkME39GAA64ZPmPztGFo=
+=Q7Uz
+-----END PGP SIGNATURE-----

Added: 
release/felix/org.apache.felix.http.wrappers-1.0.6-source-release.zip.sha1
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.0.6-source-release.zip.sha1 
(added)
+++ release/felix/org.apache.felix.http.wrappers-1.0.6-source-release.zip.sha1 
Sun Jun 23 11:44:57 2024
@@ -0,0 +1 @@
+e710415b9ba28323bfc4f16097e60e57ff07f434
\ No newline at end of file

Added: 
release/felix/org.apache.felix.http.wrappers-1.0.6-source-release.zip.sha512
==============================================================================
--- 
release/felix/org.apache.felix.http.wrappers-1.0.6-source-release.zip.sha512 
(added)
+++ 
release/felix/org.apache.felix.http.wrappers-1.0.6-source-release.zip.sha512 
Sun Jun 23 11:44:57 2024
@@ -0,0 +1 @@
+abb929833ffdd033b03e266865596bdbd4603378ce2659471104adc892b79eaf36d1faece3ece50aa3f073f3ec8a12fd33f2cefc1cfe8f34bacf5bf4043f142a
\ No newline at end of file

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

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

Added: release/felix/org.apache.felix.http.wrappers-1.0.6-sources.jar.asc
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.0.6-sources.jar.asc (added)
+++ release/felix/org.apache.felix.http.wrappers-1.0.6-sources.jar.asc Sun Jun 
23 11:44:57 2024
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmZz0uwACgkQP89Sn/Ly
+egZjdA//ZZt7333h5Y+qkfUPR6EDES7HRHw8Lum8R4wadTGeu0HF9e0FvmhqNxYw
+Y+mdZvaEu1BcjSp94w9JySGcUcvEbhXXUozSq/K5pkom6QTjFEvWm8g0rfkvNKmF
+u2AkQ6vsl45zO+BSJyOLGx7OFzFNPK4jyLGjLMZRceTSwnS/Gt1Pmtqxgiowl15Y
+BLKVDyDetHm0RiS9jiMO+1TyBI1cbY6K5dBV4jCAqi0LPkvBCZyglf3IVi753ysi
+IdQhKU0UrybD3bVSy/Uy/nX5xH9rvlVdgyt8khqKtGxdbs3ZHFF8FWo2cMtXQlSp
+0iYcPu3fUOBi0UZStQM0y0MC0STtvBLfc1S77FkJoWqkF7MdNBLsFRtGLWiYd9gL
+yJm2Ujc/WTrsUOn75cSQLA3U3hvLDtYeT26/5aS6WdhMRIfjAzv/7t0Vo9rnYKu0
+oEcjzaF10aWdAgLVOseLRy9AcH6Iyym3Kq/iynyhLsiTM/n9/ljqeTjinVoPeOW6
+AuA3MBOsYv0wjjd+SNR3pfOWBiih4MeJ+b64rmx3+HMq7aBMqHoMZLYGWOn6+Clr
+lMElND4pFUZvyMsQVMsytN96C6/2RKWmWE3aB20KnJYevRxVFIjuYmnw/b6YP4Bm
+uYMlGy3icTX4Ge6lbI7I4ImsUx/vpv66y+mG1/H1Vo0qKYl4qIM=
+=ZtKb
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.http.wrappers-1.0.6-sources.jar.sha1
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.0.6-sources.jar.sha1 (added)
+++ release/felix/org.apache.felix.http.wrappers-1.0.6-sources.jar.sha1 Sun Jun 
23 11:44:57 2024
@@ -0,0 +1 @@
+dbc1885dec393c3a314b865dce07e31022460902
\ No newline at end of file

Added: release/felix/org.apache.felix.http.wrappers-1.0.6-sources.jar.sha512
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.0.6-sources.jar.sha512 
(added)
+++ release/felix/org.apache.felix.http.wrappers-1.0.6-sources.jar.sha512 Sun 
Jun 23 11:44:57 2024
@@ -0,0 +1 @@
+4088c7dd9b2b3ac1c577133de6029ce556ebd45a779d3df112dafeb31049c2de08ba4670d5db49f622485eb259e0154c03c5b9d5e8b0969480868a814f531e02
  org.apache.felix.http.wrappers-1.0.6-sources.jar

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

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

Added: release/felix/org.apache.felix.http.wrappers-1.0.6.jar.asc
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.0.6.jar.asc (added)
+++ release/felix/org.apache.felix.http.wrappers-1.0.6.jar.asc Sun Jun 23 
11:44:57 2024
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmZz0tEACgkQP89Sn/Ly
+egZSpA//f18heYNPwKG76SasnAmzsaZ08WCaPLNtV0ZTmBeJtIvcHHzLJVAFXCIJ
+Qd4gTAJ7qhV4z6TbQ7TQwNoBS0mfVrm/OJ6sfqDv0dh70LPfv0HRw9GA3+8AlCHE
+Wl09+JPIXXGcrQMl7ZN7Q8ejfCpibhz+4bDGccVGqU6K1aLWtCL5axNEYOk/WM4l
+390HkTZhpCOY05QXswWLahU8+09OTFc6OZPj4ffDubz0PygnhEq2OYUEReA+VJn5
+2VTms53MqA/Ds0oXFeSIF1Fdyj3naUgkShOM9UPiTJerufIxtXlb1JD2yi/kKEDz
+0SnxFpNqg4dpaGQfaCPrXvCcA5lkU3/o37bTCXJ97eFV2mJLuhAeDxht/NN5BmAJ
+QkDOXpfYUE1EhvLfAD3Wmsj87pClTJUSnNCFmRorYedaWVQVdouSoUKkKV67xneK
+JAzee6rN4g04ZBvhRoPunqxn/FodldqvlkBD0zuDKUhKMHp3951fEhKEzHzUekwD
+KDTbli4besjXkzh7VVyI+v7TK/H8k15yF+fsQpn3fyJYLY/gj85ANmlqTTa9jxs9
+dwlehGtzgQ34ijyrrOGB5MYD2P46ZJfe/neDbRlkCG4ZzTpRrxcu/OpjdBMud5ZW
+PUY38RiC0F7ujJkJLFXjnpS379ZSMqQ3a0kN6C7GHZc1pDMINwM=
+=F6CJ
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.http.wrappers-1.0.6.jar.sha1
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.0.6.jar.sha1 (added)
+++ release/felix/org.apache.felix.http.wrappers-1.0.6.jar.sha1 Sun Jun 23 
11:44:57 2024
@@ -0,0 +1 @@
+c995d81813fc5d29b77d8082cfd33f5a6cfdf23c
\ No newline at end of file

Added: release/felix/org.apache.felix.http.wrappers-1.0.6.jar.sha512
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.0.6.jar.sha512 (added)
+++ release/felix/org.apache.felix.http.wrappers-1.0.6.jar.sha512 Sun Jun 23 
11:44:57 2024
@@ -0,0 +1 @@
+1cce389cb9e681bb61c9ad346b22ce7cb30f164b8c2ca43aac94d69e36c8591af8550fd179561602dbec0e01807da4cd78a0ad457479a29bc4b400ec4ee27f4b
  org.apache.felix.http.wrappers-1.0.6.jar

Added: release/felix/org.apache.felix.http.wrappers-1.0.6.pom
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.0.6.pom (added)
+++ release/felix/org.apache.felix.http.wrappers-1.0.6.pom Sun Jun 23 11:44:57 
2024
@@ -0,0 +1,109 @@
+<!--
+    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.0.6</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.0.6</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>
+            </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>5.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.5.0</version>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
+</project>

Added: release/felix/org.apache.felix.http.wrappers-1.0.6.pom.asc
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.0.6.pom.asc (added)
+++ release/felix/org.apache.felix.http.wrappers-1.0.6.pom.asc Sun Jun 23 
11:44:57 2024
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmZz0uwACgkQP89Sn/Ly
+egbvfhAArsEiRTyWa/3yc/z9qTyMjgwSML+WzN+Foc/yLlCWU/8GpvivAg/Y8swL
+e43s2dXnpE9+Ba8XasO2IlI4YkxdlmOfNMKTGLs2zYkcijHfYOwEsvJlA5VgQf3O
+92HqY6vrS+x1TMVT3bA0Il77LiWtUfxQv87t7efp9SFaQErzdYONY6UKeEGdvG0V
+pjpdyGLl6GtEhlGMHsqZqmjQc9usAGiY2dNu54AtlWC71wqJWVAU+qdWbSkSBWkP
+WcWJ5nbEPxIYEo4ZMiRc7ksukbl2o311ewMo37pNj8mcM1ZJVtQjSXFZVQYVol8E
+WHTUMH2M5ZiyLDfooJmjWcJJ+zpLltnafv+QHoGK/RhTxs8VJDMqpvjXEzWpWx/f
+oR6reVAX7p1vNlbbXHin9MEFiurC3WhCsFPd1A6lekrBrwo2iSCRVJcgXpQhUA22
+2GMExei7gwBtgqD3KR4xsdLxieP8YKekEly7EN8mTVpCwp8AtzYCQJqx8QiiJ/Mu
+JY0nKNy8G9YOAzqFsxvqkm1Lhoms0sJnIfAhng9BoTqwGQgbFSKHQlpBThxJQFNP
+DsG2aFLRtTmEENcg+Zga0g6J709sh6to8htmBYlFYhcR7AzzA7IgT7D5C94ZF7y4
+O4rqDTf/Ysclfhm50eLKEd/kVXxNYkujYecgrN6Ou53T1/htyhk=
+=N4h7
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.http.wrappers-1.0.6.pom.sha1
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.0.6.pom.sha1 (added)
+++ release/felix/org.apache.felix.http.wrappers-1.0.6.pom.sha1 Sun Jun 23 
11:44:57 2024
@@ -0,0 +1 @@
+02f9f5d5e01ee84df7cde13d986f1294a68d0fe0
\ No newline at end of file

Added: release/felix/org.apache.felix.http.wrappers-1.0.6.pom.sha512
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.0.6.pom.sha512 (added)
+++ release/felix/org.apache.felix.http.wrappers-1.0.6.pom.sha512 Sun Jun 23 
11:44:57 2024
@@ -0,0 +1 @@
+63d11c458dec475798bb99596c207ebcb3b830e3473138a10f9e5760c5019592ae43014404537ed8389f684f14eaa39b6b30b2416408793575bb21b04fb1fee0
  org.apache.felix.http.wrappers-1.0.6.pom

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

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

Added: release/felix/org.apache.felix.http.wrappers-1.1.6-javadoc.jar.asc
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.1.6-javadoc.jar.asc (added)
+++ release/felix/org.apache.felix.http.wrappers-1.1.6-javadoc.jar.asc Sun Jun 
23 11:44:57 2024
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmZz0ywACgkQP89Sn/Ly
+egZv6g//U7VKaTgVypoLCi6qU3HL3LtUmxANSPS6ykvkOjE11AkjM7aQKUC7ynTb
+KQo6hj2cjeZ30bE8/5m5qw70duvHUXabT2FbuCR+DolKPIULsyoJW81gXGzVkj+V
+BwSsiFlLeCCftaOZtbpFhtBf7hvGFiE8F4Qv635p/+dTYfT7RmHxICaFM+0V6zhT
+wPaDrRHOJy8LXhxl8fzZmnY7drKF3i2PBa1jIbLZnpGhJ+7omeAkRnRkrhDQveaM
+JEdpG1olWZ4BT0YAm30aCNwvsUqZCgmHNW8ce8a+PA6gPFPH0AMiZZ+M4zTJDVOB
+/MMyS+Umf27lcJjzzJwN2nDLg9H4MfgdjVWqjTOPEEdfS4fvVAUt5l+PuG/ixe7e
+FPrbE3EojFDigkSDm0Xd8XZeLrJ8fmlX4APFpjC9UiOrMmM1uDxP7jI/oZ0/2Rl1
+i3sN3ZBa0/b9xTwi3heaaduehMvOAShvcG7VBe5kdoDyrKW1ZegKd59BETiX5Fp6
+4xD999cQTXKkNeHZjXNKNwMABY87FDNJQzVr6aj3ZzRTVKfKuZCNPWpV+YfX5dfn
+N9QS1+J23ju4yAk9/D98kJpQmPTfzX5uzVHdZgXh8z/gsu2HTORGvANHh7MGoits
+Yj85SnHzs8n8QIluenIJewBtuhpuVEavk/TmBu4RU6VooLx6G+A=
+=gtX/
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.http.wrappers-1.1.6-javadoc.jar.sha1
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.1.6-javadoc.jar.sha1 (added)
+++ release/felix/org.apache.felix.http.wrappers-1.1.6-javadoc.jar.sha1 Sun Jun 
23 11:44:57 2024
@@ -0,0 +1 @@
+d1e0b508883200abbbecfb1ebc432e3e536baf3e
\ No newline at end of file

Added: release/felix/org.apache.felix.http.wrappers-1.1.6-javadoc.jar.sha512
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.1.6-javadoc.jar.sha512 
(added)
+++ release/felix/org.apache.felix.http.wrappers-1.1.6-javadoc.jar.sha512 Sun 
Jun 23 11:44:57 2024
@@ -0,0 +1 @@
+baec8c501b2cbe03fa901868eb16876730d352950f914904b0e6043310ab57a6ca7865b39a50d4e33ded603a314b9cd31d979c7aa4ed81d2c0cec2baccacb82d
  org.apache.felix.http.wrappers-1.1.6-javadoc.jar

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

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

Added: 
release/felix/org.apache.felix.http.wrappers-1.1.6-source-release.tar.gz.asc
==============================================================================
--- 
release/felix/org.apache.felix.http.wrappers-1.1.6-source-release.tar.gz.asc 
(added)
+++ 
release/felix/org.apache.felix.http.wrappers-1.1.6-source-release.tar.gz.asc 
Sun Jun 23 11:44:57 2024
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmZz0ywACgkQP89Sn/Ly
+egZsvxAAkt2ygbu+MiUbEydp25iAUbmrgaJrKyx0SJhNrazNAAHeMETCKynMshUp
+AIGmaJiLez+DOQ1dOuvrRYo5BX0NwBoXkGlP7qrOZ1jMGGVdvgs/y4dq08DN7FSO
+EqtSDk6dZ/6HbYVq836YlAkJdg0RMEN6Pmy/m98adtvqQ9mS3+HAzTkexEc43Y/m
+NhiibYFzYbszHV2j+x3Cy8w1OUm810fgDPwrKlfouVtfbzJ2npvqoPD1+6OvQRMD
+biJxGhYySK85lu2WB4VdOvKLVZdggL3fK9Kl1crtkQJDxzpvsYEAAOssu/OUF/RA
+qenchIVnyHoqvKhT9t8G1Us4ZI0dFMkr93Oeo0u5/gx+vPa/teN7O/4wSWL4tT5k
+/Kgtf5ImpaqmDvS1g7V2OBdxBzVaMO1nzv+/i4WrJs7w9ZxyexkGj4c7rvrra04b
+t9d+CqA6skvpIMlZZaEFXfsVYZo//7OB+QFzc7O1ekahaSlhK7BGzgkzin0R+qQ0
+93se0ymN/xDpSRCNql22ruX+KZ0OGCpL+AHD7dM8JacOSk4bX461za41+bZs4Re5
+5eO+RQsjHUQamywuBs5VKs1e02RM0bnNljBJySQL9jc3+Rbdc5ZwBrVCQOD2kVzx
+louFewHcYQmgBIlk8Tk0NAVb1c3qkWwEYAAnqeDUY1LHez/cGrs=
+=y4PK
+-----END PGP SIGNATURE-----

Added: 
release/felix/org.apache.felix.http.wrappers-1.1.6-source-release.tar.gz.sha1
==============================================================================
--- 
release/felix/org.apache.felix.http.wrappers-1.1.6-source-release.tar.gz.sha1 
(added)
+++ 
release/felix/org.apache.felix.http.wrappers-1.1.6-source-release.tar.gz.sha1 
Sun Jun 23 11:44:57 2024
@@ -0,0 +1 @@
+a50dd6cd153e1bbf34f85673cda5a07714cd5185
\ No newline at end of file

Added: 
release/felix/org.apache.felix.http.wrappers-1.1.6-source-release.tar.gz.sha512
==============================================================================
--- 
release/felix/org.apache.felix.http.wrappers-1.1.6-source-release.tar.gz.sha512 
(added)
+++ 
release/felix/org.apache.felix.http.wrappers-1.1.6-source-release.tar.gz.sha512 
Sun Jun 23 11:44:57 2024
@@ -0,0 +1 @@
+8cce0a72547944a874977ea46c438f0a50f50bf9185d5d05991d99c94ff69b06a6e83638b38412d3bdde351fef508756f32a72048eb61280b870e5041eadabc9
\ No newline at end of file

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

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

Added: release/felix/org.apache.felix.http.wrappers-1.1.6-source-release.zip.asc
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.1.6-source-release.zip.asc 
(added)
+++ release/felix/org.apache.felix.http.wrappers-1.1.6-source-release.zip.asc 
Sun Jun 23 11:44:57 2024
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmZz0ysACgkQP89Sn/Ly
+egbWKRAAr5KSbdoT36Uq7FSEqRe9qT0SpevYQCS1YdxGDzJDhwTtHgVfU1OvlQVr
+Gyw7EOoiiv5t0U544uUFlbTVTkNbQIKFDj9GI20nmwHxeW/46Oeju6JjlXEm+ed0
+czMhrKzK+XZ0e4XSUwe26sQZ338uLfMMurmR3lWKrhgskVIySXsgLbXCV6i1tKHN
+epnmnSeODILL7q8kXDqejg1MWVWGFEIqn6AQUlHcBd6DPK/cfKkT2ibU8qu9TXwL
+68ollsZxbnb7CA0KtpTnhmaVMCUlNy6BtwxwaW+KrS6mrIMAWEPuDtgpPALjNaMO
+NSl57oTn64H3BGSShKSo2lWxNysXDV2es4+9Am+AA6oCJkhUrMC+dTTVmvO7xvV1
+c/53UQfV7miSogH/4wPTXbwU3r+SXHZtilk2Wkd7bDfbEilmiKmuKBqLaQiD0+NU
+1WntzDZcI3lUwVj9aKmW50UMyNLbmq6vxYxfIcezfy/3wdDlB5hrDKeFXuo1VIpF
+edfGKgbzLXGDHN6vAXdVWFHymMFsY7/IJKo9DOexr8tdEn9ClxSyVYjT4ZQ3X0BK
+1IESX/5kwcYEU85QZuOF69lu4hWeKZw0Ae6rw6XZXshTVVt+XSE+DpiRKMg00uzX
+/SRGSWpKxAruI3fb8nWWe/OLbgVH3HZIrb5m+EKhyPfz46L7Vuw=
+=8G9J
+-----END PGP SIGNATURE-----

Added: 
release/felix/org.apache.felix.http.wrappers-1.1.6-source-release.zip.sha1
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.1.6-source-release.zip.sha1 
(added)
+++ release/felix/org.apache.felix.http.wrappers-1.1.6-source-release.zip.sha1 
Sun Jun 23 11:44:57 2024
@@ -0,0 +1 @@
+cbd2c0e8b5e08052b1475c8b049ba279e4a687d9
\ No newline at end of file

Added: 
release/felix/org.apache.felix.http.wrappers-1.1.6-source-release.zip.sha512
==============================================================================
--- 
release/felix/org.apache.felix.http.wrappers-1.1.6-source-release.zip.sha512 
(added)
+++ 
release/felix/org.apache.felix.http.wrappers-1.1.6-source-release.zip.sha512 
Sun Jun 23 11:44:57 2024
@@ -0,0 +1 @@
+8d06c7beab469d14dfc18b8982006a169cf315b4432e99337090ec6e1f2016a2164f16e07a5df041f852c49981051899a61f1c9f2f559e386e8c6ab6a7a7bfd0
\ No newline at end of file

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

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

Added: release/felix/org.apache.felix.http.wrappers-1.1.6-sources.jar.asc
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.1.6-sources.jar.asc (added)
+++ release/felix/org.apache.felix.http.wrappers-1.1.6-sources.jar.asc Sun Jun 
23 11:44:57 2024
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmZz0ywACgkQP89Sn/Ly
+egYe0xAAooj0A/Zll672F0iSNWi06ohgrxhU5scXmQVtSlL7AarI5RPoEUtqGY4P
+wCKNaabW6IHs3cOb7fBS+YvnzjJniV9Bid9B4PEOdjYdzqmHkOSExRMUAwfHv6nV
+PaNOmxGgzMkAQP1rTTFgsOhlKc0jZ4CyNvcJAXcZqh08QGluz977dMlti5dDXsTA
+ra/ZwczKxZqOfNzFuWgv68QFHPn3Lq1K9ma7xUetAl7mXjLdZswm6DJ4ZrFgEXzM
+3drIqsllI4YtwnSW18M3YOfb/scMML5AyB3b0Zv6L6yfAoa3oqvLz871robpng5E
+z30uM9Wh7iTthD1Hy8mdNVhVkjPBNkYvo85igN5ZnT/+aSlUJwJ6pUlf1bFJ/iRU
+hkIAS9bv7mKmtddARFOcWaV7tgtXXiGso+QQoFQ8iUmiQngFhhbwAsnH1zOhwQ2K
+8CtLUcfSiDDUIby4Ky3NfYNCUWQw++XxyR3k1HQJGyBpr7tDPNpJ/FJbbBi30xPp
+Nt1NfevoSVbRKqt2uxIHiIx2XtKvOQHOeXWNxg4sa/5/6hVeC6zpzWFr4hpUOi+r
+NilEt3xLJW8xHMou+Of9+ISmCncuwhTsamcDgnwqKRQ9bTgFFrKmz6i8vpd5+Uad
+xR2AcEFzQ0LrLCeJK2kngsTG8PEPDZ4V8bQKKO5Uo0NBVBiGBbo=
+=8ng2
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.http.wrappers-1.1.6-sources.jar.sha1
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.1.6-sources.jar.sha1 (added)
+++ release/felix/org.apache.felix.http.wrappers-1.1.6-sources.jar.sha1 Sun Jun 
23 11:44:57 2024
@@ -0,0 +1 @@
+43ff1673728d2f169f27e041a381e684719d6395
\ No newline at end of file

Added: release/felix/org.apache.felix.http.wrappers-1.1.6-sources.jar.sha512
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.1.6-sources.jar.sha512 
(added)
+++ release/felix/org.apache.felix.http.wrappers-1.1.6-sources.jar.sha512 Sun 
Jun 23 11:44:57 2024
@@ -0,0 +1 @@
+ac69d70eea67c4d90e0b766176680880ce7d3afe98ff5ce7b6b708b253fe557fe39397b5bfcc3899460218104c1037a95eb9eaad7efd622f9893b69e1b64c820
  org.apache.felix.http.wrappers-1.1.6-sources.jar

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

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

Added: release/felix/org.apache.felix.http.wrappers-1.1.6.jar.asc
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.1.6.jar.asc (added)
+++ release/felix/org.apache.felix.http.wrappers-1.1.6.jar.asc Sun Jun 23 
11:44:57 2024
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmZz0ysACgkQP89Sn/Ly
+egZEQQ//cOUxXqgWYsesYLGDTgwLXPrgjjAM9uqwkL82S5IHJS0AbC/Oq6XZKibR
+5pXDEGx97hnW8wnAz+WuDut7/Kr4+5p2PoykW9ADqAANRR84fCjBnrbfM57GhcmW
+HYF2EW2gQ2kxQEYwCzpBmuvybkicEPHklVtuEIL1FbDo/vhVcnY5pghdN+GWIElB
+8AVWISF30FzaEslrHtMRFE1XSUM/EYZBRp9Bwm24dTYfysP3lwmFPbwS+VXXFJlR
+fHUAwJeZcYaeg+kwB6/+rWV6nVEmj7TJE6uRQoVSd7GB4N3TWjY7aZ9Fj/twr+Oc
+xHu8Qhp+7TP/vqYiA9HJ1QIq/KnKrLZAIa8yhm50yt5ZS5S1DIUYhKQXjK2AGuKL
+zOcvTLBA4lsJlcPBoZxXj8pr7ZsfyELZT4fYgCvHmTkWDqDZ8J5nd66p+vNCCD29
+UNcLL96QdBaRTkaTJOT/aPXLgFU5LSnZaGI43H3gtciWissurnrwNaQXYvfjkd8+
+tRCcObozzI5zJgYqa8qGaa3f+TESmqx1yy2rFYggxgDa0wT7zDap+yOU933ooVsf
+Q5Xh33tiw77wQyVTEGLd7YFsIHZ1b9V+5fjWuibgLA42IEiNloOtw65cRCNqZSl8
++NJS5R42+Q5FGpFa4FCoxKdeuZ564xwzl0eLiKV7bAGqWQbkzQs=
+=TwES
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.http.wrappers-1.1.6.jar.sha1
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.1.6.jar.sha1 (added)
+++ release/felix/org.apache.felix.http.wrappers-1.1.6.jar.sha1 Sun Jun 23 
11:44:57 2024
@@ -0,0 +1 @@
+84e9fd5bccbd659d4bbc20369b356fb2cd2c0621
\ No newline at end of file

Added: release/felix/org.apache.felix.http.wrappers-1.1.6.jar.sha512
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.1.6.jar.sha512 (added)
+++ release/felix/org.apache.felix.http.wrappers-1.1.6.jar.sha512 Sun Jun 23 
11:44:57 2024
@@ -0,0 +1 @@
+a6b69c7ef7331069c07ffa186a05cb4a89d7523abf03af1932c7046db0d895e515b3c34608235f150ca38301a9210ca82538d45529aa3e15dcfe2ba736fc1cdf
  org.apache.felix.http.wrappers-1.1.6.jar

Added: release/felix/org.apache.felix.http.wrappers-1.1.6.pom
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.1.6.pom (added)
+++ release/felix/org.apache.felix.http.wrappers-1.1.6.pom Sun Jun 23 11:44:57 
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.6</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.6</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.6.pom.asc
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.1.6.pom.asc (added)
+++ release/felix/org.apache.felix.http.wrappers-1.1.6.pom.asc Sun Jun 23 
11:44:57 2024
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmZz0ysACgkQP89Sn/Ly
+egY1QA/+JW2C5OZVmywUtApzqtoKtLRwANNeoOOskpoNDPk1DUmfI+9SOX9jy9bd
+JVfNXOdEkZA8BLLxIREQijY+EhPP6n2W7ciSIIzXc7BiXiosSOeWWmEmSlfTV7o5
+6pg4wskMAVwFRa9m2cbrLpVID/VRbSl3iRWaqKRMz3q8gk8565bPSbFktyhFXqgA
+O4jkZQAHgGrDI1HewFm6cZZUWk7dc3yZvt0uV839fkNuzr33f2mzMKWY/trAG2pE
+b9CvqTXKoohOBWwkNGwU6SNlAbzQvCn3idldYyleN3PNP8/OykPglfrhcH76tazf
+CZKm7onW7f+2Snak3eKB4kJRUhQaITBVwDGRUDyJi+RCuihM1DqDMQ7g4DDOwCsV
+fVC0QubTXVfFMwaTBFUtdsjODGZb9CkyvMgRzg1VfGusz6qmcqGE1IhDEUNo4YXL
+qyMC2sDlqCWJyCyKHHzLg7w/mQPtOqiLLRwcLtRX7ZQUdIzsFhi8L+KfU3nedBnx
+04Yaik7lQ1TrYImZWjfY/9SQvjzuvItyvbIT4JbxDNYn61yEMr8SKh+sSJK3xyn8
+pnsxMJcKeIfB+6tdfgxQq+etEv1O92bjWlxITC8OgFismZ1Jus8ZFfQjq1L8Zclv
+QNYv4FglalYjwUn71C/tNTFx0y4gsiQ+5r5XMLtCC2RB04sXD28=
+=irRF
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.http.wrappers-1.1.6.pom.sha1
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.1.6.pom.sha1 (added)
+++ release/felix/org.apache.felix.http.wrappers-1.1.6.pom.sha1 Sun Jun 23 
11:44:57 2024
@@ -0,0 +1 @@
+bc0bb73443b248c95b18f71c80bb73d8f774a10d
\ No newline at end of file

Added: release/felix/org.apache.felix.http.wrappers-1.1.6.pom.sha512
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.1.6.pom.sha512 (added)
+++ release/felix/org.apache.felix.http.wrappers-1.1.6.pom.sha512 Sun Jun 23 
11:44:57 2024
@@ -0,0 +1 @@
+213b057d0a8c8ee27a8891863012683f6eca766f3454952ab5663ef68aa1833c488cdb9ea2ffdf9aad76484d35646d83851c6a16a4e91fc38902692d9ab5c928
  org.apache.felix.http.wrappers-1.1.6.pom



Reply via email to