Added: release/felix/org.apache.felix.http.jetty-5.1.12.pom
==============================================================================
--- release/felix/org.apache.felix.http.jetty-5.1.12.pom (added)
+++ release/felix/org.apache.felix.http.jetty-5.1.12.pom Sun May  5 08:51:57 
2024
@@ -0,0 +1,604 @@
+<!--
+    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.jetty</artifactId>
+    <version>5.1.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.jetty-5.1.12</tag>
+    </scm>
+
+    <properties>
+        <felix.java.version>11</felix.java.version>
+        <jetty.version>11.0.20</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
+                                            && 
!"jetty-annotations".equals(artifact.getArtifactId()) // skip the transitive 
artifacts from the optional websocket artifacts
+                                            && 
!"jetty-plus".equals(artifact.getArtifactId())
+                                            && 
!"jetty-webapp".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.server.*,
+                            org.eclipse.jetty.servlet.*,
+                            org.eclipse.jetty.util.*,
+                            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,
+                            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=5.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
+                        </_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.*,
+                                    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.*,
+                                    org.osgi.service.servlet.*
+                                </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=5.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
+                                </_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</groupId>
+            <artifactId>jetty-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>http2-server</artifactId>
+            <version>${jetty.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.eclipse.jetty.http2</groupId>
+            <artifactId>http2-common</artifactId>
+            <version>${jetty.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.eclipse.jetty.http2</groupId>
+            <artifactId>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.websocket</groupId>
+            <artifactId>websocket-jakarta-server</artifactId>
+            <version>${jetty.version}</version>
+            <optional>true</optional>
+        </dependency>
+        <dependency>
+            <groupId>org.eclipse.jetty.websocket</groupId>
+            <artifactId>websocket-jetty-server</artifactId>
+            <version>${jetty.version}</version>
+            <optional>true</optional>
+        </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.wrappers</artifactId>
+            <version>1.0.2</version>
+        </dependency>
+        <dependency>
+            <groupId>commons-fileupload</groupId>
+            <artifactId>commons-fileupload</artifactId>
+            <version>1.5</version>
+        </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>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.jetty-5.1.12.pom.asc
==============================================================================
--- release/felix/org.apache.felix.http.jetty-5.1.12.pom.asc (added)
+++ release/felix/org.apache.felix.http.jetty-5.1.12.pom.asc Sun May  5 
08:51:57 2024
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmYyaoEACgkQP89Sn/Ly
+egaEfxAApcG+vcIhOibhokRnyN4YrbnjLf1Un2UV4A5VxD7skDacOy6L53apH6dm
+j9RmcGxRCznbnsBS93EJ9MGxMSRjJeaqCo+KqN5C7YcLqmSrZ4ocVKi6ZNU3vP6w
+Ban3iifJtqdULhyjr9DjkCWMVxOgng9/kMuYaSQevU9oL1b8Yc14dmlGtIJOW6QV
+4tCmejP7glq8PVY9e/2IO400CoOc4lgsst849qVry7C7D+qNjLz0IGSZCFYU3HzD
+97SFGvobdGheeYxJIzgZmO9jw5iVsLbulUZ4pa+3T3yguAx9KPYbsJE0vtHAKkfP
+tkPnAI7ZulM3ILcOl4BovsKgkeI+PAtaqJXvleP8ymaQAYhHhZEcTROiD9R9t0wy
+MJ1C1G5gAuHDqvGpcTDH4uUiJTPfITbLgHLh9+DIBEnndJLSIqfRtPzeM92HFk2V
+dQqYEJZcH/aTmyY9791glQ65PrO/nyQW6e6mOB2ldHFVGBqhDh++HDpy5ycwZ2az
+LcpbIXwkXgeJ0ZvrlTYvSV0MBVI/lTssd4s+W+VuVoiUirVYcs8+DblCDcQW1mj4
+04Hg6AYCoAmQ34ZL+JGpmN2vTdN44r/k0VOhJAIaY4U4dJ/8Hxf3YT7/GwRDwYlw
+DLF0DV19KdI0Y/0zkmIaOsvqQzt7ooywkzQFcnJL2e2FDdhMl7E=
+=sref
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.http.jetty-5.1.12.pom.sha1
==============================================================================
--- release/felix/org.apache.felix.http.jetty-5.1.12.pom.sha1 (added)
+++ release/felix/org.apache.felix.http.jetty-5.1.12.pom.sha1 Sun May  5 
08:51:57 2024
@@ -0,0 +1 @@
+cb1d6a662cf91003a6c291f4b6c0ab9013275ec0
\ No newline at end of file

Added: release/felix/org.apache.felix.http.jetty-5.1.12.pom.sha512
==============================================================================
--- release/felix/org.apache.felix.http.jetty-5.1.12.pom.sha512 (added)
+++ release/felix/org.apache.felix.http.jetty-5.1.12.pom.sha512 Sun May  5 
08:51:57 2024
@@ -0,0 +1 @@
+3a027c2159ea94cb29e4bb8d98526906648ba40c78398f3b84d31acf7ce8a0694cee6bd358623dcc5771e16a39927fe7e694b8e9397279a01a27b2a75d3bcb98
  org.apache.felix.http.jetty-5.1.12.pom

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

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

Added: release/felix/org.apache.felix.http.jetty12-1.0.4-javadoc.jar.asc
==============================================================================
--- release/felix/org.apache.felix.http.jetty12-1.0.4-javadoc.jar.asc (added)
+++ release/felix/org.apache.felix.http.jetty12-1.0.4-javadoc.jar.asc Sun May  
5 08:51:57 2024
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmYyasYACgkQP89Sn/Ly
+egboow/6AoWqRXhRs6Cal21jadFSXrMEVZMq4/A4hTUZyaZ6DnVjrfrTVSXWDUA3
+qOCsXs7p9QAgXcMBjsaT08IR5fC65xS4elSvjRLV+q58Q2vft62/djS289DtNXhD
+mFPmX3SXQ3dtIEqvsSu7RJOY1FXtwHCTqnTIR7sI/KJb/MJnAplw8LoIpMrVYuEB
+FGDxsO5CGptz9xCRCQcfgNopQYQEv2q03hsEk4R/JTG2L1LtgW1aTYZyJ+2nDTBO
+35XC8STQCKFub/Ax1413iFJVikTblYSMxuymUBUNZaVHAK7apGjD7IRSbwHj2UKd
+6ev5aQwSieJfziAWG03lMhhfeUTbkwhir9jROLcH0Ff80jz3LVelS5WA0AJFqmbm
+u2O7ElXYwkJ9E5zcgtmBQ165ZvM7b9yaaBz7o/R6dqk9L7S80uy+bR9nkeRvZdK1
++jsOTcFdML6nQUDgqUAzDtkXglr15Z1ah+/qm4AuGKBVUO6BaO+Xg+EBSdjmCkXG
+lrAn8azGUqqXvL3gWe2zV/eEcBVxGDsPAxqdQmcC38sNAlwcGVFD74FqnDvAaLd0
+iMmo/urr8JXOsCG9FMpdQYjuia7djQXYMoBH4S4VZ3lkaZ96hvuBuXHm9gcMHchM
+qS41MnLzizXWy1hb6McCSHHlcPljZ3PuwkWBPzeySCj4rJZyP8o=
+=+8uo
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.http.jetty12-1.0.4-javadoc.jar.sha1
==============================================================================
--- release/felix/org.apache.felix.http.jetty12-1.0.4-javadoc.jar.sha1 (added)
+++ release/felix/org.apache.felix.http.jetty12-1.0.4-javadoc.jar.sha1 Sun May  
5 08:51:57 2024
@@ -0,0 +1 @@
+8e488a8a4c0964cf10e9098e42050cafbd93f1f6
\ No newline at end of file

Added: release/felix/org.apache.felix.http.jetty12-1.0.4-javadoc.jar.sha512
==============================================================================
--- release/felix/org.apache.felix.http.jetty12-1.0.4-javadoc.jar.sha512 (added)
+++ release/felix/org.apache.felix.http.jetty12-1.0.4-javadoc.jar.sha512 Sun 
May  5 08:51:57 2024
@@ -0,0 +1 @@
+23560fa5227d95fdc332ad096fd04d5353ebf2ff605ad8cb283aae09c79599dbb51d9500e87d797da291eb78c02cbe27945848614b53b9389da965edf621a391
  org.apache.felix.http.jetty12-1.0.4-javadoc.jar

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

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

Added: release/felix/org.apache.felix.http.jetty12-1.0.4-light.jar.asc
==============================================================================
--- release/felix/org.apache.felix.http.jetty12-1.0.4-light.jar.asc (added)
+++ release/felix/org.apache.felix.http.jetty12-1.0.4-light.jar.asc Sun May  5 
08:51:57 2024
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmYyascACgkQP89Sn/Ly
+egb+/g/8Cyid0Zitg0JB4gBG0Twtr7CeDZSALLI3meO+8UZBXj9YO2f0b6W/YlBs
+cgrt2OFKO9L+ooPaVnn0PePJDGEZzLZFWrdSp2BBgsLuiA1D2kvSyFLqKdcNLUB8
+xB94+K1iUTW6Vb6bJwjbkFW8wSfgyTRu83bzevlR7rizNXkUYAk/DlY5hJ2AAQIK
+F7xg2Z1XS+gMRxdfK+DLceWNoyUiUuJRVKVggfcKq5mCs70OYMEvWAbTkIpaTiCV
+LH8OBoDagJYLzCqH/Llo34L2168Az7u801wtFxWB6xUmUUuau1YTvZzJTsT7yYsD
+vMeBNhQ41QcpdkPTYqq8k/TUBbugbmyx74KmxiXKknp5TQUPHvndvjU3ZVq6YktL
+K6wu3DB42v8ENyMSuTLNVVZRoz8jVcZ/L0Sl+djPhFqgVZWBWJCYex8bWDVTs36M
+jttqLclZYDqZaAhDDDCdhsxjwi2H33g0lnpQxSHHROzVQg3FDTsBvKzooG8RcVe3
+sxtnqDrjsTEC2tkSYyXdo6QFFuFMGzRDoDfvMNP+c4tpRZ+TTyvW0aLRMCRapvYw
+PnfooSgury/7o0pbx89tX12b0raEGuBHSE/pTAfxr8iTzSwV6YEFcdceXf9ziC9K
++VyuBw3ZYkGKLketB9U3YJMiFhiZ0c4iVDnT1a7vULrpQ0gmanw=
+=BQLd
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.http.jetty12-1.0.4-light.jar.sha1
==============================================================================
--- release/felix/org.apache.felix.http.jetty12-1.0.4-light.jar.sha1 (added)
+++ release/felix/org.apache.felix.http.jetty12-1.0.4-light.jar.sha1 Sun May  5 
08:51:57 2024
@@ -0,0 +1 @@
+78af33f934257119e575b61eea01a1b1a79b1358
\ No newline at end of file

Added: release/felix/org.apache.felix.http.jetty12-1.0.4-light.jar.sha512
==============================================================================
--- release/felix/org.apache.felix.http.jetty12-1.0.4-light.jar.sha512 (added)
+++ release/felix/org.apache.felix.http.jetty12-1.0.4-light.jar.sha512 Sun May  
5 08:51:57 2024
@@ -0,0 +1 @@
+09e65249d303155015dd78d2ab047504ef754e72494a13218f386e50f6fb585ce8d07068fd69ac9f84974b4b4621e5fc4f6e03c13588e9016f34059168fe9ba9
  org.apache.felix.http.jetty12-1.0.4-light.jar

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

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

Added: 
release/felix/org.apache.felix.http.jetty12-1.0.4-source-release.tar.gz.asc
==============================================================================
--- release/felix/org.apache.felix.http.jetty12-1.0.4-source-release.tar.gz.asc 
(added)
+++ release/felix/org.apache.felix.http.jetty12-1.0.4-source-release.tar.gz.asc 
Sun May  5 08:51:57 2024
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmYyasYACgkQP89Sn/Ly
+egYERA//SoSACg6zbQ8xskEtY2Sg0NcMs6RE6lsGcdhTq9iO8ix1XsZVh2AKnLVG
+hDUry9C+zg+9bRxQgoZZLurjDpOXzJK0owgZG1HTwRAWPUajQRrUaUb7A4Cz0fo0
+HVM2+j1sQSYJrT0Bh9pZ9R2EhKy8PZsPqnRXLtixpc5FppzIeQcwaKAB82Fj/GIl
+8dimFak1R5og8A1yErxRIgkP6ktK1mntNDmMST76A1xns8iAYqU8Ognpg0CSa9+g
+evpQs5PuAZMnDDN+sNBcpkxLUFMMgZA8Q5YzQftYG8UvTtAx1TQru4PH4PF64V8c
+bJJcJ8ys75fERKYCN8hJZ0LFdWrzm8w/Zt8wtGPdepku4hZcAt9/W4wKXiDZLQwc
+lYdEey6TOZbQ9tCNEyDNfDGnetZCrEg6D9Ut7L891NupI3zxHApJYRYee+2YtrpB
+21pJtoSpa+Inrzvi1SwqPLiqK+y+98PBai5xHL/ikiej2WRQkG1VdBVdsVzsADkb
+HXDp4SEvhnt7F1mVxD/AtAcwnjDwsvtkuSrOcCIDtj47Tx+OH1l+Doy11zQe+R9o
+9mobPKIuIGXClRmHjal4FH6NL5L0BU7KCa+uV9AP3fdDEBkHnllYF1bHHjXZKRBb
+4QtCsaceRIzl6fhFuXElKGmbBg8aAm15YqzUI0G1OhiSsG7x0vc=
+=Nx78
+-----END PGP SIGNATURE-----

Added: 
release/felix/org.apache.felix.http.jetty12-1.0.4-source-release.tar.gz.sha1
==============================================================================
--- 
release/felix/org.apache.felix.http.jetty12-1.0.4-source-release.tar.gz.sha1 
(added)
+++ 
release/felix/org.apache.felix.http.jetty12-1.0.4-source-release.tar.gz.sha1 
Sun May  5 08:51:57 2024
@@ -0,0 +1 @@
+e447f2b62bbfeb71775fd1c9cac6a088a919e983
\ No newline at end of file

Added: 
release/felix/org.apache.felix.http.jetty12-1.0.4-source-release.tar.gz.sha512
==============================================================================
--- 
release/felix/org.apache.felix.http.jetty12-1.0.4-source-release.tar.gz.sha512 
(added)
+++ 
release/felix/org.apache.felix.http.jetty12-1.0.4-source-release.tar.gz.sha512 
Sun May  5 08:51:57 2024
@@ -0,0 +1 @@
+ff24a13bd3ddc50dce20db5d455aa46a950b76efabe81a725fcdbcb2ff2d5c646f87b0cb5e9d9c0d63965d02b2194a082f30e0f538f336257f6f8daeb4f1d8cf
\ No newline at end of file

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

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

Added: release/felix/org.apache.felix.http.jetty12-1.0.4-source-release.zip.asc
==============================================================================
--- release/felix/org.apache.felix.http.jetty12-1.0.4-source-release.zip.asc 
(added)
+++ release/felix/org.apache.felix.http.jetty12-1.0.4-source-release.zip.asc 
Sun May  5 08:51:57 2024
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmYyasYACgkQP89Sn/Ly
+egbiMRAApM4g4JtOTF16zK9wS8751Kd97frcxPxTKKGTm+ASpeEvwrH7uvMR4JFr
+jFpsf8n3m25wL4eKc3A4pIEvSXML/uXLkYEpPrdfHlJWE2ojri/j23cYuB9hLg0j
+NhBKf9g4EUCZyvDmCRu78weHOlUGZ6RQk6c9Sw4dobhTj8Jx+1ofhjOu95id4lNd
+/kJZI7t7NsgO6Cts8MfkZGvFH1oNfSCgghYRlDFGHfJQqPbU+b6fe+H5jtH6bEnT
+roiVOccb6miM0KuFnBJ4zLHc4XGisVOZMMaTF3SZnWjDIC2B71I6ev8nSqAbXbjp
+F81/7UKCyvNZPJcAJheFzUOQIsh8gqCxnLJXVccrJJFWuN8Qu6ktLW0J8euEej2o
+l3VfFucdmsOfphFxt1jr3z8RQNQ2clKEOw2waY+YoviqOj5xtbffZyThDh/tv2b1
+Ulms9KIkdZy64nmBDU7jTcwJkqAqubOsKSX9WhzN8GT0EVl38z4OZrnv2rIZsFxa
+lWPUo4vo+2fv29LBL13D9LEoyHs4ZupsH+iC2pdBA4Vd5s/ukFVOHrV19OOUF1fY
+msGxGr9NmKiTl6qA/3KSKiJOb+eFyqiHZo5ZjF5VtoWNQsYMzwvsJ95mTbHaFLwr
+h3Ws104x36OY84YcoQpA+JadxZ15Gq4b01Tty6y5CzriZPP57AM=
+=iHTf
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.http.jetty12-1.0.4-source-release.zip.sha1
==============================================================================
--- release/felix/org.apache.felix.http.jetty12-1.0.4-source-release.zip.sha1 
(added)
+++ release/felix/org.apache.felix.http.jetty12-1.0.4-source-release.zip.sha1 
Sun May  5 08:51:57 2024
@@ -0,0 +1 @@
+cc6bf363c915e516b2686c70aad8cff9c642c43d
\ No newline at end of file

Added: 
release/felix/org.apache.felix.http.jetty12-1.0.4-source-release.zip.sha512
==============================================================================
--- release/felix/org.apache.felix.http.jetty12-1.0.4-source-release.zip.sha512 
(added)
+++ release/felix/org.apache.felix.http.jetty12-1.0.4-source-release.zip.sha512 
Sun May  5 08:51:57 2024
@@ -0,0 +1 @@
+d2a9b8ff125eea7e8d8ea65371f56409da8d48a735207efd4987afc4f0439a77983b784972ab0ad0980f12e945ae340627c9dcdfed12d9541b910de586ea8ebc
\ No newline at end of file

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

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

Added: release/felix/org.apache.felix.http.jetty12-1.0.4-sources.jar.asc
==============================================================================
--- release/felix/org.apache.felix.http.jetty12-1.0.4-sources.jar.asc (added)
+++ release/felix/org.apache.felix.http.jetty12-1.0.4-sources.jar.asc Sun May  
5 08:51:57 2024
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmYyasYACgkQP89Sn/Ly
+egYCRg/+PPNaMzp3xEAx0AZmqUjbfARUpOASd8vAFGkBmOQgg/16UJF5IAZgWwvR
++wG5Tb2l5SGKQe2F6j8OJPEn3qw5RB/6VyZhIK46VmXk4cG1lcxRanLp035KHhPg
+fOIiIhzUmYjNbPc5Txk3j2DCCLuWevQWuL5Pr1Laorid4il0O0DCnzgJkufpfd3J
+bYB/84wvK7OOnjiiV7DvnfP8J/f4atCh42l1HbwwFY8dqN5qC7dcl2bdhK40l8mI
+l5ouZzgRf9416cEJDJlX+gV3kc4QrTDT3bonO7D9+LWjiZTT5XXgmDjGU/0PDPsv
+bFZkh3td+zEWT1OgcbDleh8TFrLmFKrgnkDHby2vN8tdpTV/qPWRCALsKqLLs4Rh
+9K96ivIjZ0O0Ka1uedTl9UnK3Hw54yD4cjpodBN/IhJANV1pnjvvv5FflE3rMsqa
+rDjmjlAhAdqT4NuyDUqP60CAnBNNU+8q5XlNHWHtuyYBPrZ+vYyot+jj5NrpSpGm
+j5+bwJcVViz5knCVkOk5GBowoLmIjhvQAne6YsZOscpcWZ2zzMYb+HDgimQVr0YS
+Ckx+rsMHpaa2NjXjj/IOMIiEri+BdQZfRWROTnsoWCSwF2a4PwGFxC23AYqe52pD
+j7uHAZXqFBC92qJSvT0ZPVwxhdHqkarnjtbxsGAi236sagpyybo=
+=X9Kq
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.http.jetty12-1.0.4-sources.jar.sha1
==============================================================================
--- release/felix/org.apache.felix.http.jetty12-1.0.4-sources.jar.sha1 (added)
+++ release/felix/org.apache.felix.http.jetty12-1.0.4-sources.jar.sha1 Sun May  
5 08:51:57 2024
@@ -0,0 +1 @@
+3efde733113dc04da0ebe80f94085d1ec7dc57ab
\ No newline at end of file

Added: release/felix/org.apache.felix.http.jetty12-1.0.4-sources.jar.sha512
==============================================================================
--- release/felix/org.apache.felix.http.jetty12-1.0.4-sources.jar.sha512 (added)
+++ release/felix/org.apache.felix.http.jetty12-1.0.4-sources.jar.sha512 Sun 
May  5 08:51:57 2024
@@ -0,0 +1 @@
+6c229cda61a1b037225fe406e4f60a4f25da343dea420c8c3afe8d17d83ed5fde91e96386fc6a49eb9ac4344742f979a5e4f1bbd7e421e691fb2820f3c1fda14
  org.apache.felix.http.jetty12-1.0.4-sources.jar

Added: 
release/felix/org.apache.felix.http.jetty12-1.0.4-with-jakarta-ee10-websockets.jar
==============================================================================
Binary file - no diff available.

Propchange: 
release/felix/org.apache.felix.http.jetty12-1.0.4-with-jakarta-ee10-websockets.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: 
release/felix/org.apache.felix.http.jetty12-1.0.4-with-jakarta-ee10-websockets.jar.asc
==============================================================================
--- 
release/felix/org.apache.felix.http.jetty12-1.0.4-with-jakarta-ee10-websockets.jar.asc
 (added)
+++ 
release/felix/org.apache.felix.http.jetty12-1.0.4-with-jakarta-ee10-websockets.jar.asc
 Sun May  5 08:51:57 2024
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmYyascACgkQP89Sn/Ly
+egaiHw//bFfFwsSjhCSlyDiYF6SBdWOtsPCSdLoxogiSwQXuPv8+lFGEcbfWcDKm
+wRpJmBORRiHMsQ/IekfX3gpBaMrKW72XoVONeX9cYBcpSRBahzZO5m+IajW31LNf
+cv7Pp8SLa4+L5FD0zr3FP3NurEAs9xFJJoacmi0Fpc8peIxSEyJ/oID+pl0L6Jt5
+r2nXqudGhEbS253GVoE5U7GORRUhYqNVhYj60xJeCCedMBRL4IsmhE4i7RSsym31
+vv16x1NQsCQmbzJ8pBcw/ZgDeQDqRNYE8vNV2gqU6nB5jbdBXfP8VvNEG/5T3Olc
+hs+J38mn2KrmC3nTUzbXCgwc8Kl9TMLjaK5rwt/lVxwTKm4JHDKqlJ6vUxpHsRLF
+2WpwEU0aQ30jHB7nM47mOWMpWVUNBKyOkhZO/cCP3+Nn5aBzR/U7mcoYx1jVL/lp
+rQoqBH1lRmO8lxKOJ2H20pu6ByMs8P/U+i8X0wP7EoZlL0Ka26Z3YymknrAHFoA6
+sn6hLdLXpc6B9uqDwLqn9cEoZQL0EPzuc2jIGgKC9nI6RLzJzBqomCbxHw9RYQpC
+YGwMBDnBSNvO+97EHEFcTiKR+2goiJPcjIooux1LnktFnvnsSoEX24Q2dk+N6+iB
+AhSP0+DS/v0Q1pn+omMDsMSww6FeH6HwkRx2jeiqmgIbh17qDVg=
+=mNyR
+-----END PGP SIGNATURE-----

Added: 
release/felix/org.apache.felix.http.jetty12-1.0.4-with-jakarta-ee10-websockets.jar.sha1
==============================================================================
--- 
release/felix/org.apache.felix.http.jetty12-1.0.4-with-jakarta-ee10-websockets.jar.sha1
 (added)
+++ 
release/felix/org.apache.felix.http.jetty12-1.0.4-with-jakarta-ee10-websockets.jar.sha1
 Sun May  5 08:51:57 2024
@@ -0,0 +1 @@
+de73082f94967789924a17850b37daf3ba8707d6
\ No newline at end of file

Added: 
release/felix/org.apache.felix.http.jetty12-1.0.4-with-jakarta-ee10-websockets.jar.sha512
==============================================================================
--- 
release/felix/org.apache.felix.http.jetty12-1.0.4-with-jakarta-ee10-websockets.jar.sha512
 (added)
+++ 
release/felix/org.apache.felix.http.jetty12-1.0.4-with-jakarta-ee10-websockets.jar.sha512
 Sun May  5 08:51:57 2024
@@ -0,0 +1 @@
+2d1f5ab3d3694a39c22bad3c790a51bf769eb8900229144301ba6d1bb39db64736abb146e817c5956195532b8d12eda055331e07260c191943aea96a5316734b
  org.apache.felix.http.jetty12-1.0.4-with-jakarta-ee10-websockets.jar

Added: 
release/felix/org.apache.felix.http.jetty12-1.0.4-with-jetty-ee10-websockets.jar
==============================================================================
Binary file - no diff available.

Propchange: 
release/felix/org.apache.felix.http.jetty12-1.0.4-with-jetty-ee10-websockets.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: 
release/felix/org.apache.felix.http.jetty12-1.0.4-with-jetty-ee10-websockets.jar.asc
==============================================================================
--- 
release/felix/org.apache.felix.http.jetty12-1.0.4-with-jetty-ee10-websockets.jar.asc
 (added)
+++ 
release/felix/org.apache.felix.http.jetty12-1.0.4-with-jetty-ee10-websockets.jar.asc
 Sun May  5 08:51:57 2024
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmYyascACgkQP89Sn/Ly
+egbMCA/7BbOQKO5FLf2C7K2KQRLE+m7b8hOZ5rBAe8Q2vHN0sk/yHPRTmpgFLInC
+hLUxwfxewqKqJL2w1T15XjeyQCh4LTF/FKUGmN6YA6ay0F00hcUNMvRWLJ2caWO0
+pl8TIS9N+HNmDBNrc1wUL9zvfZGOxDz25m/kawXMsanIfCARbsMFdhPQDrruE2Zz
+r2X0UeJEGmzIc/oEor4BW4cPECtMFOIGCGWTjmSef5oi0g5difOXBdCXd3Re9iJR
+z5ygJeH8bxIOaTRYJduI+1E/pQisthMNVBneFkk289OgX37IBL24xL47+vxazL/9
+UBURkavOV120KJQC6JLKgSqTmVYzcToXGyh7sLPNt3U2VeLAC9gRBm8tpY5yag9w
+MDyV8tMUqZdbDHI/xlLy1yukGVmXCwtVmvpsDZSH0S1NrXtln9IsU7JzQacX6Q57
+ZWheSEwMK0x1jlqthtfp7deQmka/sx2V4d0j1LkjdqPktZvQMXeGWkoCS9dlk6+Y
+XRM8s0vQkSxjEU6HKx+mViiNj8EQ6+wm/3S7LcXzk1HI0gehjpg2SKV9lnjffKsN
+Gw7TQUZD6noZO692srUq/XexiGv6piVgep1VmJPlS6tdEQa9JQhq/LmKgM0ni3n4
+ouXWZDZXaPAyNiQbWEboZmUhwpvtJNCjjVXCNLeQ7ihQLeax9YE=
+=cW5B
+-----END PGP SIGNATURE-----

Added: 
release/felix/org.apache.felix.http.jetty12-1.0.4-with-jetty-ee10-websockets.jar.sha1
==============================================================================
--- 
release/felix/org.apache.felix.http.jetty12-1.0.4-with-jetty-ee10-websockets.jar.sha1
 (added)
+++ 
release/felix/org.apache.felix.http.jetty12-1.0.4-with-jetty-ee10-websockets.jar.sha1
 Sun May  5 08:51:57 2024
@@ -0,0 +1 @@
+b0919756b5a302e88e4a0c5dc38fb60de1fa311a
\ No newline at end of file

Added: 
release/felix/org.apache.felix.http.jetty12-1.0.4-with-jetty-ee10-websockets.jar.sha512
==============================================================================
--- 
release/felix/org.apache.felix.http.jetty12-1.0.4-with-jetty-ee10-websockets.jar.sha512
 (added)
+++ 
release/felix/org.apache.felix.http.jetty12-1.0.4-with-jetty-ee10-websockets.jar.sha512
 Sun May  5 08:51:57 2024
@@ -0,0 +1 @@
+7eb4a8ea786f5e731e30d5036fb4200b621335bffa3c25860963c2729d483ca2607e8a7c9e924637d97e2035194272adf726a8e0248209e6675b087664279f1c
  org.apache.felix.http.jetty12-1.0.4-with-jetty-ee10-websockets.jar

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

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

Added: release/felix/org.apache.felix.http.jetty12-1.0.4.jar.asc
==============================================================================
--- release/felix/org.apache.felix.http.jetty12-1.0.4.jar.asc (added)
+++ release/felix/org.apache.felix.http.jetty12-1.0.4.jar.asc Sun May  5 
08:51:57 2024
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmYyasUACgkQP89Sn/Ly
+egb9hQ/+JppHiccCWWGgOcvfdQXDaGMbzeSQbnt25r444J9+TGR/zIaWeiokqk07
+MQA5tQhKBhuQSnkuqIBsWNl8tQwYBKUW53gRphHNe98fCMM/T6dc7zfFDNk3b6fi
+XyEt86tgOY/sqoKkpx1SHRhDC8sgOw4wrd8OChBv1AjH+ab9VXazYPTf1Xt4D+e1
+fJ7KJRsHjx3nPSYw0aQOs3JUZcdCmUbSPTM6zEnKPIDhl63GBzsDS65UCeStw3BW
+kr16VQqeXex/YLChygNqhP2TGK+fvQxH+DBpr6rxwkIboHNrhzj12wjZ47LdHXqZ
+uMRx+vnCJRCd8YoJ9Efc3f2n+WCOD5Qn6xNS2R7Sg2QyxWzZoXnk7FUxNTS7aQoQ
+r/5+JyMuE2GLR9uU9RBzaaNGfFDhXdb4nE9j8D1cAZvx9GFbP+rP/Zen/bRHr0ll
+OyiSf+I5nSpByOdaeZtffSuBp1kGlO7RjX1dXcW1ZIDBrdJLJKlFmoNKtCUUVQcF
+5kTa2MW5vcg8DilILg+S75z0/UdvKLgAqz5wO0Z6HwhNvAm0d2baxvGb8c/fyWCK
+Bd1zW5XNCKA9gjzaEf+eSwCtpnesyyVrMDJ2xTN1JTZaLrq7EkgVSHAquXHGfs33
+n04MriO3jeJoexaWhTGzz6mfYeHWfFanYD78XnxnzGi5EuX+KPg=
+=n8EN
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.http.jetty12-1.0.4.jar.sha1
==============================================================================
--- release/felix/org.apache.felix.http.jetty12-1.0.4.jar.sha1 (added)
+++ release/felix/org.apache.felix.http.jetty12-1.0.4.jar.sha1 Sun May  5 
08:51:57 2024
@@ -0,0 +1 @@
+c082d9cb304d308256669d2bc4e0f980c5ae4aaa
\ No newline at end of file

Added: release/felix/org.apache.felix.http.jetty12-1.0.4.jar.sha512
==============================================================================
--- release/felix/org.apache.felix.http.jetty12-1.0.4.jar.sha512 (added)
+++ release/felix/org.apache.felix.http.jetty12-1.0.4.jar.sha512 Sun May  5 
08:51:57 2024
@@ -0,0 +1 @@
+e73a83302ed5becc4b70d8baa764fafc855684fc057b3fd593f5a513cc4fb4dab8fec24189b787050dc55cef30dd5bb3f9523d6280646bb045bb2a40271b3359
  org.apache.felix.http.jetty12-1.0.4.jar


Reply via email to