Added: release/felix/org.apache.felix.http.jetty12-1.0.10.pom
==============================================================================
--- release/felix/org.apache.felix.http.jetty12-1.0.10.pom (added)
+++ release/felix/org.apache.felix.http.jetty12-1.0.10.pom Sun Jun 16 08:34:12 
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.10</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.10</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.0</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.wrappers6</artifactId>
+            <version>1.1.4</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.10.pom.asc
==============================================================================
--- release/felix/org.apache.felix.http.jetty12-1.0.10.pom.asc (added)
+++ release/felix/org.apache.felix.http.jetty12-1.0.10.pom.asc Sun Jun 16 
08:34:12 2024
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmZpxeoACgkQP89Sn/Ly
+egZCxBAAk+24PF2eCVl8aeBXCg0wlNdeuBN+CzNvNHiKlPfdZ1kDNC4BxvmTs3Kh
+M712esFQ2M1Ntn8d88ld7Vtl54hFV4OvZrKPG1Raim4WbCKYftwJPLhAcHZFzI9r
+xev+E9Wmfq3Hey/ZWBfr1UZ5DsUiVGAtomtD/k5O02vJR1ePJe0nF5FpIPXesgZE
+hYKuVbD/+CkQ935nigRHUIB+XP3JNWStN61AYB+DKdslOJE4sN+LvU340xjZHmDy
+X+jSGD6ViMm62UjjvkODqnU1Gk/Qd6eunCcVygLipbZvS5Bb4n80BtRqwM8GK7Fw
+77ubLnTqbyNF+ZfdAEwpamsGEj0IzLVmwBrO61WYGZ3Jb+uVzgZvmtF2bMoJKeYW
+ki3peayMzJY2rdEIG8vZeLZrOPY6HLSbLJ+DyIbV4wQxgdKo48Y+1YJ5X/8ZwXwN
+EIUQA8HyLg8WdAdiVg6q+HB+Pl9UAva6k7tqAwMnqrvOAX0iYvNmIdb9RSZByVSj
+AyLspYMLzo8KvzHvXvdm7+eYaOF7petae5PhW0HRTtM4UKsB7adF2PplrvJWvYJY
+uVzrV/+HciWdbpMIcxob7oxSkdvi76rGk7KZ2mUskkXBlV/Hth8yeaNcA8tTHNNM
+XHRT1BSZDOvzTDjszC8pV7S5cZ8kUaMNxrMqywXgJ87dORhhnwE=
+=C0JX
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.http.jetty12-1.0.10.pom.sha1
==============================================================================
--- release/felix/org.apache.felix.http.jetty12-1.0.10.pom.sha1 (added)
+++ release/felix/org.apache.felix.http.jetty12-1.0.10.pom.sha1 Sun Jun 16 
08:34:12 2024
@@ -0,0 +1 @@
+c6d43051e147da2ad2a53184d6f413367f704f5f
\ No newline at end of file

Added: release/felix/org.apache.felix.http.jetty12-1.0.10.pom.sha512
==============================================================================
--- release/felix/org.apache.felix.http.jetty12-1.0.10.pom.sha512 (added)
+++ release/felix/org.apache.felix.http.jetty12-1.0.10.pom.sha512 Sun Jun 16 
08:34:12 2024
@@ -0,0 +1 @@
+b386e70429a13f4e3b1e1a4596419781d1661bf294f81bf877d0b5687f7442acbd0e0f8909cf57521f6ba5ce744a5ec3b1688fd88910ea18dc8557360bdd9c72
  org.apache.felix.http.jetty12-1.0.10.pom

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

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

Added: release/felix/org.apache.felix.http.wrappers-1.0.4-javadoc.jar.asc
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.0.4-javadoc.jar.asc (added)
+++ release/felix/org.apache.felix.http.wrappers-1.0.4-javadoc.jar.asc Sun Jun 
16 08:34:12 2024
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmZpxTUACgkQP89Sn/Ly
+egZtZg/8Dm+a0iNO9rwJh7/vsFVpJG/C+iJeWh6XqfyHe8fJQaRv53eHEBQeDIFo
+5+UiyHB8HwKU4y8b7p0srcJ73M4WMLUK90rx4xHC2YJQ/TTeIH93Xufu6oTzpvg7
+qZdnIsRbinh2V2kYaGCNNLSEeoaIH9HvcCrP645cY5xqc9cLXw5bitLMk6lS2WLW
+cxJBT1QDn7Is3Vfepa7dxCYtUuLHTFcESUKfN0ulKnyAVCf1YQOkppvLK0HID8Wv
+a6VigjuVp8Q6PUTWKRJ+tShy/hTnL0EpNjT429HTXVUTrTxHgSTeB19hCTxg794a
+6xKIo4ng7/ruFjk8AANvZa30Id5dKxXYOLnazXd0oq2drW2Kbq6XJW48e3KBDR2I
+Nz1dLERS5hDJSJzxfvBDYDWRyFgU35Dk5f5i4BzsHKJZBTzO5etOHKyFGFFqU/l5
+6Mw2Q1N4ZKBszywqSIEeU2wcisV15VYtrIq8+u9oz2cE5MjqZqV2LzljVREC2Eyk
+0kW2OVPnRnskj6xRyJABDNg5d0zzgAoFqvBo5/iCsQM+zVcWZkW29tyZI4RCF3zz
+mJ7HaDK88xYWTGVwWwT6dWLS70W19QjRa1yJDXNZBgAcf82JzHgU5amQMRh2T/Rw
+PbwA3S/zuMVJIOK56fzceLwIi8X3A8JT/pB6YDfIsCHRaD5eT38=
+=SL8c
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.http.wrappers-1.0.4-javadoc.jar.sha1
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.0.4-javadoc.jar.sha1 (added)
+++ release/felix/org.apache.felix.http.wrappers-1.0.4-javadoc.jar.sha1 Sun Jun 
16 08:34:12 2024
@@ -0,0 +1 @@
+609b66547e4e8b8c2fd01b72a98dde4d0b5d7e2b
\ No newline at end of file

Added: release/felix/org.apache.felix.http.wrappers-1.0.4-javadoc.jar.sha512
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.0.4-javadoc.jar.sha512 
(added)
+++ release/felix/org.apache.felix.http.wrappers-1.0.4-javadoc.jar.sha512 Sun 
Jun 16 08:34:12 2024
@@ -0,0 +1 @@
+22e0de698763e8caaec26e2b778a2c7e0aef8b04b199cca10ac91230916d334ab5731177e1b518ba592e8121ff029fab006049519deadd91a7785b58573bc892
  org.apache.felix.http.wrappers-1.0.4-javadoc.jar

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

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

Added: 
release/felix/org.apache.felix.http.wrappers-1.0.4-source-release.tar.gz.asc
==============================================================================
--- 
release/felix/org.apache.felix.http.wrappers-1.0.4-source-release.tar.gz.asc 
(added)
+++ 
release/felix/org.apache.felix.http.wrappers-1.0.4-source-release.tar.gz.asc 
Sun Jun 16 08:34:12 2024
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmZpxTQACgkQP89Sn/Ly
+egYAZQ//bPNWVK5KMIMfMb5RNf1DGSMzonHAlUHjLuzxnPpMP6y+Ro3xWp1vV5TX
+qkTVQyOdS+0gBkO3KPuK3Fbvh3S4+2T/x6xww+ns7waXqpzhtpSEt5SjvKhKjmdB
+i09WyTadHtOew/RxpR4MtFLnXOAynpaFslyb/FV0Me4NCsFOSwpIgR5MxwgbQZqm
+sSIFCtASdXWL6WtAvlUJFr//77l50WYkauXbowHcw7zjDHFnx+V/MD8PnG95ZRd0
+QL/hE4IW+rJtHitR3FXLQambecOHKCFlXOMGXdscpotxr3kFC3a/tALXyhhZmEoM
+VPEhHuHQutXswGX6zhqG6hRw+A91HKX4AiKUE+CJealSTYYCtiF8ybynFdHvJXt8
+RWFBBdhOiWT6gfUkrToXLzk/Rnd7KiVJd/mj1DE28bLpdzkEOwBYMbzf5TwN3sNs
+mfK6XFqpXnFV27CykGeX3FSCmLXGbcx/qIj5OWTyZWlnKBjrsQP/OBCRJEPXHKoX
+vVv+RhRhhe3YbUCxsfIhYevBJxNqbKKsQ2k9BxN9P9f24smrxYSFhwJWweUFFpi3
+LGEwPU31pM0QEnkv4bbMrfFk6VQwI3D2Ji1RULCHDRM7By9sVs7L5ZZPa7Sti6Dv
+m8UUeAAGpaRZe7MW4yfsSGTR5VzSXr4d19t0waLP/GAgnuibAR4=
+=w58p
+-----END PGP SIGNATURE-----

Added: 
release/felix/org.apache.felix.http.wrappers-1.0.4-source-release.tar.gz.sha1
==============================================================================
--- 
release/felix/org.apache.felix.http.wrappers-1.0.4-source-release.tar.gz.sha1 
(added)
+++ 
release/felix/org.apache.felix.http.wrappers-1.0.4-source-release.tar.gz.sha1 
Sun Jun 16 08:34:12 2024
@@ -0,0 +1 @@
+a53df3d0523d6d9f89086eaacd0b5fc0f2a7f53c
\ No newline at end of file

Added: 
release/felix/org.apache.felix.http.wrappers-1.0.4-source-release.tar.gz.sha512
==============================================================================
--- 
release/felix/org.apache.felix.http.wrappers-1.0.4-source-release.tar.gz.sha512 
(added)
+++ 
release/felix/org.apache.felix.http.wrappers-1.0.4-source-release.tar.gz.sha512 
Sun Jun 16 08:34:12 2024
@@ -0,0 +1 @@
+1bd2ec296be76190a472ba2e65d29668222e2659ffda594d6ab10a7fe0d546666cc9a0825e5f183f07799b4d0156b2daa164ba969c2556c9e3b396dd3ce12c34
\ No newline at end of file

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

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

Added: release/felix/org.apache.felix.http.wrappers-1.0.4-source-release.zip.asc
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.0.4-source-release.zip.asc 
(added)
+++ release/felix/org.apache.felix.http.wrappers-1.0.4-source-release.zip.asc 
Sun Jun 16 08:34:12 2024
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmZpxTQACgkQP89Sn/Ly
+egYLaBAAplDkEmgY74/A8we1jqFiKdiKwMJ67rsndeYFRKgiNci9cU8rjASc4N2s
+tYg7oHDHSwpg3vvi5KwwgFldK3/G2vt33XNtA0e7H12PWjeZKM72oStkGoI4A0GR
+toD7HLPM/ee7Fbwnd15Iiiou/UxqrHAo+MoKUrexoA7IM3zjn+GVnRc9D+q9GT3h
+yR3mbdMFwWJTCXe8ff4p5zoWYSkSyJXU1LnHj5dxO2VHF7dv8AFsDdyoGMU4V9Uu
+lbYQ1hVWdGPO2/zoQFOBbSgowL1cqLfhxtThTrWvRmt1wNEzw/v28Iw8aUvIihy2
+4qIqhhwRwsCre5cgK+E7BEoBya2eYX/T7dLIGl4a4nNfWWQGtEMSyD1deZzlY422
+qbJ1sgJwotx7UHqj5CjsaZMP5X95REpxAvLBQyYXT37cFbm8B9/lL/dV6yHoq8ET
+aN0kI6lTRj4ydh5XpkLjfHTO8F41LbZL+BuRsxTiQiCIfb6lrL3K1Kc3wpxv1Emd
+R5qSxj8+ujbwUiOdISorxIM3kDZxCXGn7a+ecS0o8Ui1PkP2Oy6hYaGGGEMgOE8B
+GzQVQlxvYOtcO6erpLd1vd8djhNfs12j8JSwZpRRa6saLQGdgxopinE6QJP+8Qkr
+RdlWXMoV4qwbdw7jaN3sy6K3fj9EQGI9Dkobt1ItCDtJnx+wYYc=
+=2+aa
+-----END PGP SIGNATURE-----

Added: 
release/felix/org.apache.felix.http.wrappers-1.0.4-source-release.zip.sha1
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.0.4-source-release.zip.sha1 
(added)
+++ release/felix/org.apache.felix.http.wrappers-1.0.4-source-release.zip.sha1 
Sun Jun 16 08:34:12 2024
@@ -0,0 +1 @@
+1945998af1745974ec1766cc478d9b93dee0a31c
\ No newline at end of file

Added: 
release/felix/org.apache.felix.http.wrappers-1.0.4-source-release.zip.sha512
==============================================================================
--- 
release/felix/org.apache.felix.http.wrappers-1.0.4-source-release.zip.sha512 
(added)
+++ 
release/felix/org.apache.felix.http.wrappers-1.0.4-source-release.zip.sha512 
Sun Jun 16 08:34:12 2024
@@ -0,0 +1 @@
+5d4fd323a9780dafffc849e5f88cbb48d14980a34d151ffc8f5dae382f3123dc3a71cee414b95ccbdbf624a529be23de3f4a5bb3f0d03b4465ff9cfb611b5432
\ No newline at end of file

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

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

Added: release/felix/org.apache.felix.http.wrappers-1.0.4-sources.jar.asc
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.0.4-sources.jar.asc (added)
+++ release/felix/org.apache.felix.http.wrappers-1.0.4-sources.jar.asc Sun Jun 
16 08:34:12 2024
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmZpxTUACgkQP89Sn/Ly
+egaezw//b/bb+kZiW8OhG/vYSrdBMp4Guk0dIkut4m+StyYwM3WGQRy/f4v07fOv
+1ThBFGXlUIKe2P2nQ+W6rj7GiFWnjVF315AVy4NtmITAQo+dV57dSlZxGoZZlVDt
+wvEf5wwckgnIALYoePuY9TCB91nN6ZE7WTVtWVB1QPKoGikZPThiGYps3Srj7dp3
+sngEnXZLSAvku61iJYxR/u0roLdiPagZGLiniF3q3/VQa8fzGC5R9vyVfwi2LH26
+cujjTIfpVALO2U0qVqswvkSrBYelWOwQTd0RF3dtOEp/fq7hRcIrw3iyw2dZefJ2
+YmHO8o9rbzJRC2Nd+VGiPEEiPJ8Dd5lW6QNEAMXwDXAsV1hyQnYaf3xVLlbPiGi8
+OTarugP5HVVqrBGbF+lOgesdoK8esNmrIKpnm2mcGzAodBB0Sbq0Vq8+eyaQghPJ
+R+zVG3TYtn85JIdWpJuBmr3r4j4npCDNcA8xaw5ySEDnnuf20X865kRtW+nI1CAC
+D94Z0YEbXGyybk5kvnbZPKPmDiInAa3MOJBO/4bS8p4QKJFVAVooB43JxxORMunp
+JmGuZWzCXnQS6bvzpqpjzThcmgOOMgKzcfQoqxBHm2k1ULqjwyp0CeSAAUabfskh
+bpvJho6qoMp9zqcGfdY98817sV4FQMp8nku9MOJRWNh1siJRWtw=
+=/lXv
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.http.wrappers-1.0.4-sources.jar.sha1
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.0.4-sources.jar.sha1 (added)
+++ release/felix/org.apache.felix.http.wrappers-1.0.4-sources.jar.sha1 Sun Jun 
16 08:34:12 2024
@@ -0,0 +1 @@
+6d32dfa70410efea7d0d287f0ba044d47c6950e3
\ No newline at end of file

Added: release/felix/org.apache.felix.http.wrappers-1.0.4-sources.jar.sha512
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.0.4-sources.jar.sha512 
(added)
+++ release/felix/org.apache.felix.http.wrappers-1.0.4-sources.jar.sha512 Sun 
Jun 16 08:34:12 2024
@@ -0,0 +1 @@
+f20d566432e4a64f52669874968e84361f48398401311233dcde3e7f41af69c8db76a723821af363fa85a2517917b41954da2d103d14f68a62f2c8f38cf5b42e
  org.apache.felix.http.wrappers-1.0.4-sources.jar

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

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

Added: release/felix/org.apache.felix.http.wrappers-1.0.4.jar.asc
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.0.4.jar.asc (added)
+++ release/felix/org.apache.felix.http.wrappers-1.0.4.jar.asc Sun Jun 16 
08:34:12 2024
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmZpxTQACgkQP89Sn/Ly
+egaCEA//aaBVogq5Hy3bv/uAk6Iw6Ov4DC/4ELfzHEwvxbJtfzgujo54/cFxjw4k
+1wt0UWi0zmjI99qNEli4mEPkxhsVDFamXsvFu2YBjRQ1iOBxi80hgIQLSQUPSOii
+D6gLFahdy1kkC3R+NuEBZtpVtRiA9HlORsl0yCvEbsU4Gq/FS1qRM9sZlr8lUVW/
++WT6iMcG9uVh0khaYAZOzaLTmAzzdWvnM0zo/q0CE8KeTSouVfgDPGJuxuWydpvv
+TXbXN35tWHhYe373CPrVaL+5g26FL+VnOonMzXl2fT2p4kQYgsLpRT8p62bf7BL3
+mDlJjgAauDvb+EuFoR7oAW4g+L5+wLYA2xtVcW+ZW30S9c09EWr12DeqJP3gJf+3
+/hQ0dCjZ25rkzwHojfUqzrEh3ZGoRRyvFnFM5nr8vREXOB2crhP5+eDaIdHaP1DE
+QaFmc5CgONh7Te0TZLGSXHpQjBgvgketWGqqZDiRikVl/zO+xh+1VPWuPi1CPzaH
+j6C0UspbcYEoa5UXvyl6qdYTuml5dfZXLGIFAWiqiiqraIsppNsQZ6iQPR0dxQHp
+FAPVhwjwUEeApaM4uZlxW6ZyM4fxPRiHI2LkoZq6VsZnKZIZhROeRAK5QthWbmUq
+wCjYYRiEM/swxCn8V1OIcRIvDerTUKuP0QTnytd4Y8kwZxeKnis=
+=Zris
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.http.wrappers-1.0.4.jar.sha1
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.0.4.jar.sha1 (added)
+++ release/felix/org.apache.felix.http.wrappers-1.0.4.jar.sha1 Sun Jun 16 
08:34:12 2024
@@ -0,0 +1 @@
+d67f4a2d677162594ef61002776e3d3e79ac43cd
\ No newline at end of file

Added: release/felix/org.apache.felix.http.wrappers-1.0.4.jar.sha512
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.0.4.jar.sha512 (added)
+++ release/felix/org.apache.felix.http.wrappers-1.0.4.jar.sha512 Sun Jun 16 
08:34:12 2024
@@ -0,0 +1 @@
+44d10a3b85af09c45d9bd12422c7d121400e9e58ac2b7feb31878d035d578bc1f4db99fb0e195e8c3b044244ce757e0a1b56e5f207c249916b44711f4cef69fc
  org.apache.felix.http.wrappers-1.0.4.jar

Added: release/felix/org.apache.felix.http.wrappers-1.0.4.pom
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.0.4.pom (added)
+++ release/felix/org.apache.felix.http.wrappers-1.0.4.pom Sun Jun 16 08:34:12 
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.4</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.4</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.4.pom.asc
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.0.4.pom.asc (added)
+++ release/felix/org.apache.felix.http.wrappers-1.0.4.pom.asc Sun Jun 16 
08:34:12 2024
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmZpxTQACgkQP89Sn/Ly
+egZPhw//e4smfdDCDZoVfjvX500hNj2PrYm9N3cDbmB91jN/3eiEadDibbRF+mpH
+9HBww/cS7smqoXZiO8SAYLThyyiZS6x1QmO932EyNUI4w3HQQ1qCPDHnCCoxxHNV
+/YO7J5J7cRDlP6O5gW/IgrPBZkzUeW9guqOzU/g2+fqLx/L0vYO2f21NFgrIXoIo
+howXgzVXCummq9kaSgGipJvJ43/01SsdP7l+C0BFydIra0jy7629tpgT1QEOqjPK
+j6mQpvPVBmMQbgrts6MSRU49zN5M3cI7WKK3taRtfN349k9RSR4UvMnyO3PecsNq
+YYZhdMju5HPCuaebp5VxGSCZC/H/e3y4LPovwaBuIKZJTqgDgbjri7HbES5yKrta
+PtiAOcFWXg8M0xgkChh7SHxzptAG4G+nFLmU/KIOgAEyFfY8I6DylcgXhJuXwPMA
+OTj7S9gEI06VVBgTJOSxGTjpUR+xQ/LtToxV97Mw6llD9Iygb04nBTuwuo61xiz1
+e63yH6xkStT+SfJII1ORVc1rgIzlx6cdk1quMo1q77YTUNerc1UydYpA4WR5MvuC
+TE12SzxCvRVhytE2npTMs/i6eyxDRbxllHERyWQlIgZuFitR/eZAVZWawscB+EZ9
+cj0mfQ4KH+U0RpbmkierkbXIL5U70P+0xIpBjAuMLDdYJJxhsbI=
+=eoAM
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.http.wrappers-1.0.4.pom.sha1
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.0.4.pom.sha1 (added)
+++ release/felix/org.apache.felix.http.wrappers-1.0.4.pom.sha1 Sun Jun 16 
08:34:12 2024
@@ -0,0 +1 @@
+7be7dceda4fb2fd86108790cb838296c3cf6eaa0
\ No newline at end of file

Added: release/felix/org.apache.felix.http.wrappers-1.0.4.pom.sha512
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.0.4.pom.sha512 (added)
+++ release/felix/org.apache.felix.http.wrappers-1.0.4.pom.sha512 Sun Jun 16 
08:34:12 2024
@@ -0,0 +1 @@
+0616a47baec422c8826a266621f8ebbc56f0fb360768d90e70394fb9ee4572b98ee5e1a5872dcc60308fc8e06051cf690287a69c3af1d4512a1d9efe9b4a7c73
  org.apache.felix.http.wrappers-1.0.4.pom

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

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

Added: release/felix/org.apache.felix.http.wrappers6-1.1.4-javadoc.jar.asc
==============================================================================
--- release/felix/org.apache.felix.http.wrappers6-1.1.4-javadoc.jar.asc (added)
+++ release/felix/org.apache.felix.http.wrappers6-1.1.4-javadoc.jar.asc Sun Jun 
16 08:34:12 2024
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmZpxQcACgkQP89Sn/Ly
+egb8VA/9H/tQ8lkIBjBJbRpWk3igrEDuQpSowgs5M9kODIRoobGJ69y6SChnpB5E
+Dp9vIPtG/3q6k05osXCu9w1PTPip9Llmwa1Rh+RGQc9ES5kyos7N+30Rzfen5WJt
+PXmVX1PdNF7FW+fFxMsVWA1pFQ7VBizb4YAyegs4KjZ+haU4YvQ1flG74GdfDhVd
+60qFxtEvZKKIgu3+BS6NkmFePTiipe91dpu0WdLaYdXWysrYZCTbCTZRwq50UP/M
+67xQTJca7/5WNCRQtKN1oIbaPkx3ZVWThI9A+jyffds7p0SO+38O2rTuZUHl6dWR
+9nMU9IKEA0z3ieXJBrgeDtclfvQx1rJncuPQ4wzGjCPDVR/z76qe400Dwz5BawEI
+VwTr9W/RvATl6YUTSSGj8+LF8Fq0MOOMAKPiBN2En2pGFsLJlNK8x7FAhjO5jF8W
+pjw0yZRBW30vXEH+0MJUSL8qobYGqKf6XdtbSkxFdn47cYx+0zdRObpm1woLv4Ei
+83G3lFXxEZfFwWdNMRP6PZKzEhthtPLhjYNv/LJaPK2ZQJ7YS7E9oAHucneZDwGV
+oUvSQCGVQhnlcubshXUuH/UcL+BE3BqEotIhGnwnG9fLAO1kw4jb5nSTz0pyFX8x
+8FfYczDf4itn/tVDWJG04RxnR+9B+TqwbfgDVzQIJ4T8+NGf2Pk=
+=r08m
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.http.wrappers6-1.1.4-javadoc.jar.sha1
==============================================================================
--- release/felix/org.apache.felix.http.wrappers6-1.1.4-javadoc.jar.sha1 (added)
+++ release/felix/org.apache.felix.http.wrappers6-1.1.4-javadoc.jar.sha1 Sun 
Jun 16 08:34:12 2024
@@ -0,0 +1 @@
+e8247551f1fcd5155cd47b3c280440b52c18456d
\ No newline at end of file

Added: release/felix/org.apache.felix.http.wrappers6-1.1.4-javadoc.jar.sha512
==============================================================================
--- release/felix/org.apache.felix.http.wrappers6-1.1.4-javadoc.jar.sha512 
(added)
+++ release/felix/org.apache.felix.http.wrappers6-1.1.4-javadoc.jar.sha512 Sun 
Jun 16 08:34:12 2024
@@ -0,0 +1 @@
+0ae147cb5d00e2df732b4b4b34801b73b1ff3f5c02b08c1b6393fedef53a937efb949d182ff99d8cf8c6c2bc110e8264f24e9349a1172269a5368b8a7b1d8c69
  org.apache.felix.http.wrappers6-1.1.4-javadoc.jar

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

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

Added: 
release/felix/org.apache.felix.http.wrappers6-1.1.4-source-release.tar.gz.asc
==============================================================================
--- 
release/felix/org.apache.felix.http.wrappers6-1.1.4-source-release.tar.gz.asc 
(added)
+++ 
release/felix/org.apache.felix.http.wrappers6-1.1.4-source-release.tar.gz.asc 
Sun Jun 16 08:34:12 2024
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmZpxQYACgkQP89Sn/Ly
+egbHFg/+KX+Sn8dwvCgBKRMYSUGvbUqbiRmI3ha8QpCddnQPotejKABN3rLQM0qn
+MFpnXsKbBO/G2SlhXUFFGWR5zJgcE2JbMjfP3QS2zgHdF5jZfgIzDLHsZqZXvQ69
+nd4zkBmFoiTYP4uAlseNSOwE+V4mJMRCtrUMARh/Pn79mQhrE0NTk0vdAKPWXC82
+JlM/B1R6Nix/Hmxn8AR5baOrzhQVVQEtSuPLcfTyxVqIJhRnaASlqV451qPDxIlZ
+MocPkp4NNDc9acWG6MWxb/WYN+kdLGYPjWUmuL41pfKy5qMH2i+ek+0KCuHG7RTY
+mhaY5y80EtAzPRU7h79BzNUSWCZ8iS5rQmTC4hw9fsRgcHwI5oPlEHaXd3OWG8GF
+XVLS5NYLh3Rgt7vxEDQEX0HbCQxRn0WwWMn+MjNRRmOpv7UDOWcTPo/4nvw4gnwO
+GR+5M8m9A9ncDPnUgmMYQSiZkXv2qTU4V7lGISBK3LXkhBHNdGIbVqshZWPGzg2s
+3gE61riTGGs1o/7Ogw9E6AyUwmKJySLlRkP92Bo7VHFEcANd4Rg10o/5lHYOoYOp
+0FGV3gzeTM9Eixe40S5OwAzL69ZRxTVBF7DrY7sulpRkLBeZSgaIjXmhlD0h44Jz
++XAlPHvrLsaUkc0awDRfSjJUDNtfHBfpCVlQJSokk+qu/HjGjWU=
+=85+h
+-----END PGP SIGNATURE-----

Added: 
release/felix/org.apache.felix.http.wrappers6-1.1.4-source-release.tar.gz.sha1
==============================================================================
--- 
release/felix/org.apache.felix.http.wrappers6-1.1.4-source-release.tar.gz.sha1 
(added)
+++ 
release/felix/org.apache.felix.http.wrappers6-1.1.4-source-release.tar.gz.sha1 
Sun Jun 16 08:34:12 2024
@@ -0,0 +1 @@
+37674101239ad666042f21301793356dcdb7a543
\ No newline at end of file

Added: 
release/felix/org.apache.felix.http.wrappers6-1.1.4-source-release.tar.gz.sha512
==============================================================================
--- 
release/felix/org.apache.felix.http.wrappers6-1.1.4-source-release.tar.gz.sha512
 (added)
+++ 
release/felix/org.apache.felix.http.wrappers6-1.1.4-source-release.tar.gz.sha512
 Sun Jun 16 08:34:12 2024
@@ -0,0 +1 @@
+c3ffe78493e29fe860abb45a291a0cf0fbb9badac1de5010340d3e0bdf448700aba939b73fbb774e8777baa70035e758753b2009bf2fbc346c4b1cc3c0cb3af6
\ No newline at end of file

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

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

Added: 
release/felix/org.apache.felix.http.wrappers6-1.1.4-source-release.zip.asc
==============================================================================
--- release/felix/org.apache.felix.http.wrappers6-1.1.4-source-release.zip.asc 
(added)
+++ release/felix/org.apache.felix.http.wrappers6-1.1.4-source-release.zip.asc 
Sun Jun 16 08:34:12 2024
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmZpxQYACgkQP89Sn/Ly
+egbmWhAAsk/zf72zA4+HNk4ND/YIX2cEt07ytKIYZFsAiWSlqCiBS4aLbwPewcjS
+k+TannGukNNXJlX7qZw70tor9QQoXAQHdwPATIFZWzxslz+H+gDYXsWxIdCESJgR
+BI+DOsKZ4kY7WMzIVOA93g92iL5Nk2eWenNW4R/S2ViQ846VisIgmowBFJKfYHvU
+VKg1VpVmn8HLA7voMThk3/UQG5zuWVuQnj+ZxIANhgSzWuEy6EekJbSZql9WiEzo
+NLhv25DlACOYxVOh6hURP+i5dvcY55qi63Aufy+UAr8PeJMW15cQKSM9nAttj5SF
+17KXUlDoIUWvKX/J6uvkmJDh/WjKY1+RikGWa8yAd658LFY83x1xUsTdLc6l0PCD
+KynMxTQp0fbHiwxwwTq8Zi5W7aVUovlz1tfEedcrFwzUOLQmqdMfoX8m3fMG+UGp
+EhFcr5/VopVbvuQQDvadXkbHVjdRez+Q5jrhFgn5KrHi6OLlwCyAnSNo39NjrC37
+5KsaNiUeO3g7JhU9iPSlrxqtnc7s+EeBfIdnH057rcwdQnDLU+lRbQ8fBOE/B5rw
+2N3uo4dwzCywuC3ePe4cAhlb5hfeYuMvreyk5cgtc/tIJOzAq5T79eQfEr6qryHv
+CSh31hvEMMmUcbwVVSDNYuju+PQPoXjUZip5drSfxJYievGLSGQ=
+=xEz3
+-----END PGP SIGNATURE-----

Added: 
release/felix/org.apache.felix.http.wrappers6-1.1.4-source-release.zip.sha1
==============================================================================
--- release/felix/org.apache.felix.http.wrappers6-1.1.4-source-release.zip.sha1 
(added)
+++ release/felix/org.apache.felix.http.wrappers6-1.1.4-source-release.zip.sha1 
Sun Jun 16 08:34:12 2024
@@ -0,0 +1 @@
+cf4c2f2bacbfd6a671b53062f25a35ad323e1735
\ No newline at end of file

Added: 
release/felix/org.apache.felix.http.wrappers6-1.1.4-source-release.zip.sha512
==============================================================================
--- 
release/felix/org.apache.felix.http.wrappers6-1.1.4-source-release.zip.sha512 
(added)
+++ 
release/felix/org.apache.felix.http.wrappers6-1.1.4-source-release.zip.sha512 
Sun Jun 16 08:34:12 2024
@@ -0,0 +1 @@
+daf187001ffdb1c573e81fa36aa46bdbd68ebb5068226fabbab724a9deb1bbed138287a097f0b5afc16ee2dd51cabf3b654f9a29541cfc489174aec1d6986aeb
\ No newline at end of file

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

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

Added: release/felix/org.apache.felix.http.wrappers6-1.1.4-sources.jar.asc
==============================================================================
--- release/felix/org.apache.felix.http.wrappers6-1.1.4-sources.jar.asc (added)
+++ release/felix/org.apache.felix.http.wrappers6-1.1.4-sources.jar.asc Sun Jun 
16 08:34:12 2024
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmZpxQYACgkQP89Sn/Ly
+egYwzBAAiOoYXBTPt2EosNo3KJH5TESrOVDVU1kOZseXVoVeILcAX3Jvn9G2iCgp
+ewr62GHu6aOGWpaQwV8w/V1QOH5PLuK1Mvh81ZFf5xcFtoeKdiXnP69uuCCv1yJ9
+PAZ0yVJDOW4vXUwzxrYCizxBJNygIscqi3ZSdGQLwW81NBQYes0j97XmzzfSqmPP
+l8iocHakfi1VwuY9DxPHWmZNmMl3LPUTJiSmdGckRADOxuIfIGUBRa1CAgKlL/4w
+MIdR5oiM+d8yfvtxctG7W4j1Oj8Q3Oo4U4PdehcCtg7WEiv73+fGrccnFp70ey3/
+vUsiGWIh4E6XdNTCHbA2f1vjD+/BDylxFRMoYwkvLme6icslMY5s43Y5GEh4hj8a
+YgoBonkzfUxKx7n9+WCEf1kr2+btLefZYWZr2CUeM8IqkcCLtVLUmNrbp9vD1sLc
+fYe8zXtW787UHGq+P/CBDdeUZBX4n5BxRwLiuMUWjgl72gYEWdSgajWi7DgmmGTF
+DTqwO9uIB5wRrBjiXg8uyV/zaaYAn+yBnYGszpcaGoo1/ir5ZgqgbF2YT/lN3prE
+O5yeQnbzuAJvJf+h+g4pVGI+WGZEDXka9t39xwB6dOi0dXQp4Xp0JHpDmTyPGIwX
+ybMDrbKrV7UMTkYTiRwZcJzAkwYXCY8RjeF6/WoHqBJOeDoiCp8=
+=4ctE
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.http.wrappers6-1.1.4-sources.jar.sha1
==============================================================================
--- release/felix/org.apache.felix.http.wrappers6-1.1.4-sources.jar.sha1 (added)
+++ release/felix/org.apache.felix.http.wrappers6-1.1.4-sources.jar.sha1 Sun 
Jun 16 08:34:12 2024
@@ -0,0 +1 @@
+0cfdba7f3eca2e85d39afb950f26ca76d777e348
\ No newline at end of file

Added: release/felix/org.apache.felix.http.wrappers6-1.1.4-sources.jar.sha512
==============================================================================
--- release/felix/org.apache.felix.http.wrappers6-1.1.4-sources.jar.sha512 
(added)
+++ release/felix/org.apache.felix.http.wrappers6-1.1.4-sources.jar.sha512 Sun 
Jun 16 08:34:12 2024
@@ -0,0 +1 @@
+30c469cc37015009fc848169748cc2c1efa3d98da85b1888ed928edefdc4cb38e457a4abe2d12b2f3fe541380663082c8a9f5c612f173ffb49e2144ed9fd823f
  org.apache.felix.http.wrappers6-1.1.4-sources.jar

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

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

Added: release/felix/org.apache.felix.http.wrappers6-1.1.4.jar.asc
==============================================================================
--- release/felix/org.apache.felix.http.wrappers6-1.1.4.jar.asc (added)
+++ release/felix/org.apache.felix.http.wrappers6-1.1.4.jar.asc Sun Jun 16 
08:34:12 2024
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmZpxQYACgkQP89Sn/Ly
+ega5Kw/9HF8H/lFxjeV4++4yGerQSLuiiPk21xgIWxtVtNIWRDq8zumJWA5qIOvJ
+NpkHlSuKpMy2KVPtTKEmgwxr8OJ+eGX0yi0vAZCa1wXDmvmTiPylCxCW8AuGOqth
+PGaep9KfwOn8/PyIw55c/JTxJtLI8TL5Mxyhm5KrfoXjUapnwC9XpeeJo6Bym2h7
+nPDMGCyml15YdludK+jMyKHjLxP5HhNpWxeI8Ul1CAMmf9J1so0bLYSTDvTrUqa2
+3vMnquAMAdci0z4sgh8DIaoVtfdO56nEKURnuQEruWZXncv9fs/g4iklV9fXyQPB
+pbfojjwbYpyRkLIOAR8Ki6sQO95ef5TpJAwX3jngOEmhwBfgrC+EtNBZkNZhnjht
+pT5gKgOs2ohU0hte/cUAaTHshyA/21lAsRi91rIVZa5Gf5DxNfgQ05TL6Xoslkqy
+n/dOdEAvpoB1qnKuEmc2eHYKznxeU5oGtS66EzQsoko7I8V2+qF4KQ5pW//mdWp/
+0UQ8aeNkCK9qqRp9NiXJiHop2JKTiDXigC4reSwD36zkug25Es0aNO+yhOK9DsSZ
+x6L8aXrd2k9myRT/ltxXzmOZZhhX0km8pi6Imb3DgOKIR4MWHghyW0A0YMG2jnYY
+fYhrGSRlUtiMJunhafxfI/LU7FqOK4xbGEXEcXKGS8gNVAUGlqo=
+=2zAw
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.http.wrappers6-1.1.4.jar.sha1
==============================================================================
--- release/felix/org.apache.felix.http.wrappers6-1.1.4.jar.sha1 (added)
+++ release/felix/org.apache.felix.http.wrappers6-1.1.4.jar.sha1 Sun Jun 16 
08:34:12 2024
@@ -0,0 +1 @@
+e1d1931c3774b1faf6c0d4c52623a6e9d082be9b
\ No newline at end of file

Added: release/felix/org.apache.felix.http.wrappers6-1.1.4.jar.sha512
==============================================================================
--- release/felix/org.apache.felix.http.wrappers6-1.1.4.jar.sha512 (added)
+++ release/felix/org.apache.felix.http.wrappers6-1.1.4.jar.sha512 Sun Jun 16 
08:34:12 2024
@@ -0,0 +1 @@
+bd2eff0d32e70665865d626cb5aa3d5f67fdf7317f12164f2685f0f174c866add04deda7b5249fb907cd6a8010ad7d906071df221e6199ce8db9cb78beadc739
  org.apache.felix.http.wrappers6-1.1.4.jar

Added: release/felix/org.apache.felix.http.wrappers6-1.1.4.pom
==============================================================================
--- release/felix/org.apache.felix.http.wrappers6-1.1.4.pom (added)
+++ release/felix/org.apache.felix.http.wrappers6-1.1.4.pom Sun Jun 16 08:34:12 
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.wrappers6</artifactId>
+    <version>1.1.4</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.wrappers6-1.1.4</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.wrappers6-1.1.4.pom.asc
==============================================================================
--- release/felix/org.apache.felix.http.wrappers6-1.1.4.pom.asc (added)
+++ release/felix/org.apache.felix.http.wrappers6-1.1.4.pom.asc Sun Jun 16 
08:34:12 2024
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmZpxQYACgkQP89Sn/Ly
+egYoZw/8CLjUJJL+wYHEdXSAPyXiPB1Hui5C2MncILBhQhyNtkzY22DIvUsA/v3O
+/nzTWU3azKBKPVZzy4hvMDUapMDUaTDBJj5bBS3XX0JVPpkXadeUgPF9v+JGX5vp
+zgmx7qO5Zao9T7lVQFmDVlsKQyUMSF8/8q2aVc9jRT/UxlHGwg2Bhy+/cryymU0A
+JsVojAglFUweVA2PtLQoair87p+gwOzXZ2+tr5OgXNUbNMK+owbpEAE7duqFttdw
+WLsDqmq7ZXliK7paMAUEe4V8r6CwppESkVNHcAyrgFDCwQZ8iIdvminWGHp0vu0d
+eZWaCtDaeZEDBsAvXg6VojEkSSvSMl/3dfMGkIQ19u5Vfaxm+oxfopBs3BcEWUmq
+jYnTKy0uK36GA0/WeULHhGUC0vSYKWGtnXiiWUkJWipZ+ImRXym2DlrHUOhdx3K6
+TEuXAhuLcm1WhcJXbX04mdvfeM3UF3euzKWvgC58b0AbaGi235JAC8Uiv4a0rnbE
+1EprXeulw+w1g7WleYSK4A2MI1wxNWEq3nIDkq7x7vTqe5jrQymntHyXooT1Iyz4
+e2NqbFc5QykVQBJRp35HGKnUtXj/G2n+Rf9K/l9VY3umyy4ngYGiSStEJsjdpyOM
+/TD+6MtTdsvD2sXYbMQafBi8ReiJ56kryGINQE5byM1JeCVP0FI=
+=S6RB
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.http.wrappers6-1.1.4.pom.sha1
==============================================================================
--- release/felix/org.apache.felix.http.wrappers6-1.1.4.pom.sha1 (added)
+++ release/felix/org.apache.felix.http.wrappers6-1.1.4.pom.sha1 Sun Jun 16 
08:34:12 2024
@@ -0,0 +1 @@
+4848fed7ff684c3d73b810ff080f675a086bc0c6
\ No newline at end of file



Reply via email to