Added: release/felix/org.apache.felix.http.jetty12-1.0.24.pom ============================================================================== --- release/felix/org.apache.felix.http.jetty12-1.0.24.pom (added) +++ release/felix/org.apache.felix.http.jetty12-1.0.24.pom Thu Mar 13 08:40:23 2025 @@ -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 12.x</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.24</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.24</tag> + </scm> + + <properties> + <felix.java.version>17</felix.java.version> + <jetty.version>12.0.17</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>6.0.0</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<String>="org.osgi.service.servlet.runtime.HttpServiceRuntime"; + uses:="org.osgi.service.servlet.runtime,org.osgi.service.servlet.runtime.dto", + osgi.service;objectClass:List<String>="org.osgi.service.http.runtime.HttpServiceRuntime"; + uses:="org.osgi.service.http.runtime,org.osgi.service.http.runtime.dto", + osgi.service;objectClass:List<String>="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:="(&(osgi.contract=JavaServlet)(version=4.0))", + osgi.contract;filter:="(&(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<String>="org.osgi.service.servlet.runtime.HttpServiceRuntime"; + uses:="org.osgi.service.servlet.runtime,org.osgi.service.servlet.runtime.dto", + osgi.service;objectClass:List<String>="org.osgi.service.http.runtime.HttpServiceRuntime"; + uses:="org.osgi.service.http.runtime,org.osgi.service.http.runtime.dto", + osgi.service;objectClass:List<String>="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:="(&(osgi.contract=JavaServlet)(version=4.0))", + osgi.contract;filter:="(&(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<String>="org.osgi.service.servlet.runtime.HttpServiceRuntime"; + uses:="org.osgi.service.servlet.runtime,org.osgi.service.servlet.runtime.dto", + osgi.service;objectClass:List<String>="org.osgi.service.http.runtime.HttpServiceRuntime"; + uses:="org.osgi.service.http.runtime,org.osgi.service.http.runtime.dto", + osgi.service;objectClass:List<String>="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:="(&(osgi.contract=JavaServlet)(version=4.0))", + osgi.contract;filter:="(&(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<String>="org.osgi.service.servlet.runtime.HttpServiceRuntime"; + uses:="org.osgi.service.servlet.runtime,org.osgi.service.servlet.runtime.dto", + osgi.service;objectClass:List<String>="org.osgi.service.http.runtime.HttpServiceRuntime"; + uses:="org.osgi.service.http.runtime,org.osgi.service.http.runtime.dto", + osgi.service;objectClass:List<String>="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:="(&(osgi.contract=JavaServlet)(version=4.0))", + osgi.contract;filter:="(&(osgi.contract=JakartaServlet)(version=6.0))", + osgi.extender;filter:="(osgi.extender=osgi.serviceloader.registrar)";resolution:=optional, + osgi.extender;filter:="(osgi.extender=osgi.serviceloader.processor)";resolution:=optional, + osgi.serviceloader;filter:="(osgi.serviceloader=org.eclipse.jetty.http.HttpFieldPreEncoder)";resolution:=optional;cardinality:=multiple, + osgi.serviceloader;filter:="(osgi.serviceloader=org.eclipse.jetty.io.ssl.ALPNProcessor$Server)";resolution:=optional;cardinality:=multiple + </Require-Capability> + <Include-Resource> + {maven-resources},${project.build.directory}/serviceloader-resources + </Include-Resource> + <_removeheaders> + Private-Package,Conditional-Package,Include-Resource + </_removeheaders> + </instructions> + </configuration> + </execution> + </executions> + </plugin> + + <plugin> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <redirectTestOutputToFile>true</redirectTestOutputToFile> + </configuration> + </plugin> + <!-- plugins for paxexam integration tests --> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-failsafe-plugin</artifactId> + <executions> + <execution> + <id>integration-test</id> + <phase>integration-test</phase> + <goals> + <goal>integration-test</goal> + </goals> + </execution> + <execution> + <id>verify</id> + <phase>integration-test</phase> + <goals> + <goal>verify</goal> + </goals> + </execution> + </executions> + <configuration> + <redirectTestOutputToFile>true</redirectTestOutputToFile> + <systemPropertyVariables> + <jetty.version>${jetty.version}</jetty.version> + <bundle.filename>${basedir}/target/${project.build.finalName}.jar</bundle.filename> + <pax.vm.options>${pax.vm.options}</pax.vm.options> + </systemPropertyVariables> + </configuration> + </plugin> + </plugins> + </build> + + <dependencies> + <dependency> + <groupId>javax.servlet</groupId> + <artifactId>javax.servlet-api</artifactId> + <version>3.1.0</version> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>org.osgi</groupId> + <artifactId>osgi.core</artifactId> + <version>6.0.0</version> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>org.osgi</groupId> + <artifactId>org.osgi.service.cm</artifactId> + <version>1.5.0</version> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>org.osgi</groupId> + <artifactId>org.osgi.service.event</artifactId> + <version>1.3.1</version> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>org.osgi</groupId> + <artifactId>org.osgi.service.metatype</artifactId> + <version>1.4.0</version> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>org.osgi</groupId> + <artifactId>org.osgi.service.useradmin</artifactId> + <version>1.1.0</version> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>org.eclipse.jetty.ee10</groupId> + <artifactId>jetty-ee10-servlet</artifactId> + <version>${jetty.version}</version> + </dependency> + <dependency> + <groupId>org.eclipse.jetty</groupId> + <artifactId>jetty-server</artifactId> + <version>${jetty.version}</version> + </dependency> + <dependency> + <groupId>org.eclipse.jetty</groupId> + <artifactId>jetty-util</artifactId> + <version>${jetty.version}</version> + </dependency> + <dependency> + <groupId>org.eclipse.jetty</groupId> + <artifactId>jetty-util-ajax</artifactId> + <version>${jetty.version}</version> + </dependency> + <dependency> + <groupId>org.eclipse.jetty</groupId> + <artifactId>jetty-jmx</artifactId> + <version>${jetty.version}</version> + </dependency> + <dependency> + <groupId>org.eclipse.jetty</groupId> + <artifactId>jetty-security</artifactId> + <version>${jetty.version}</version> + </dependency> + <dependency> + <groupId>org.eclipse.jetty.http2</groupId> + <artifactId>jetty-http2-server</artifactId> + <version>${jetty.version}</version> + </dependency> + <dependency> + <groupId>org.eclipse.jetty.http2</groupId> + <artifactId>jetty-http2-common</artifactId> + <version>${jetty.version}</version> + </dependency> + <dependency> + <groupId>org.eclipse.jetty.http2</groupId> + <artifactId>jetty-http2-hpack</artifactId> + <version>${jetty.version}</version> + </dependency> + <dependency> + <groupId>org.eclipse.jetty</groupId> + <artifactId>jetty-alpn-server</artifactId> + <version>${jetty.version}</version> + </dependency> + <dependency> + <groupId>org.eclipse.jetty.ee10.websocket</groupId> + <artifactId>jetty-ee10-websocket-jakarta-server</artifactId> + <version>${jetty.version}</version> + <optional>true</optional> + </dependency> + <dependency> + <groupId>org.eclipse.jetty.ee10.websocket</groupId> + <artifactId>jetty-ee10-websocket-jetty-server</artifactId> + <version>${jetty.version}</version> + <optional>true</optional> + </dependency> + <dependency> + <groupId>org.eclipse.jetty.websocket</groupId> + <artifactId>jetty-websocket-jetty-server</artifactId> + <version>${jetty.version}</version> + <optional>true</optional> + </dependency> + <dependency> + <groupId>org.eclipse.jetty</groupId> + <artifactId>jetty-session</artifactId> + <version>${jetty.version}</version> + </dependency> + <dependency> + <groupId>org.osgi</groupId> + <artifactId>org.osgi.service.servlet</artifactId> + <version>2.0.0</version> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>org.osgi</groupId> + <artifactId>org.osgi.service.http</artifactId> + <version>1.2.1</version> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>org.osgi</groupId> + <artifactId>org.osgi.service.http.whiteboard</artifactId> + <version>1.1.1</version> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>org.apache.felix</groupId> + <artifactId>org.apache.felix.http.base</artifactId> + <version>5.1.10</version> + </dependency> + <dependency> + <groupId>org.apache.felix</groupId> + <artifactId>org.apache.felix.http.wrappers</artifactId> + <version>1.1.10</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.14.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.24.pom.asc ============================================================================== --- release/felix/org.apache.felix.http.jetty12-1.0.24.pom.asc (added) +++ release/felix/org.apache.felix.http.jetty12-1.0.24.pom.asc Thu Mar 13 08:40:23 2025 @@ -0,0 +1,7 @@ +-----BEGIN PGP SIGNATURE----- + +iHUEABYKAB0WIQRSTiGiaWYxRzGdVfjdKxesopvXqwUCZ863OwAKCRDdKxesopvX +q1E7AP9EjbcatGLlLyWf+p57QPSgPCqB+SRIBePnpxAY+OHQQgEAwgbHJDcDX0YK +gMU5kOaItXoIgbtm7zebUGHgF6P15As= +=Wel5 +-----END PGP SIGNATURE----- Added: release/felix/org.apache.felix.http.jetty12-1.0.24.pom.sha1 ============================================================================== --- release/felix/org.apache.felix.http.jetty12-1.0.24.pom.sha1 (added) +++ release/felix/org.apache.felix.http.jetty12-1.0.24.pom.sha1 Thu Mar 13 08:40:23 2025 @@ -0,0 +1 @@ +29cc404df4586c763dacc67f0693830088ef287b \ No newline at end of file Added: release/felix/org.apache.felix.http.jetty12-1.0.24.pom.sha512 ============================================================================== --- release/felix/org.apache.felix.http.jetty12-1.0.24.pom.sha512 (added) +++ release/felix/org.apache.felix.http.jetty12-1.0.24.pom.sha512 Thu Mar 13 08:40:23 2025 @@ -0,0 +1 @@ +0c7c50e26177118d333330326cf90fa53f40a5eb09f1c190b7d63cd7313dce5829c3d9caf5f266b4f554e64499e8f1e0da1548353aa13c20cbe2b2dc1918c174 org.apache.felix.http.jetty12-1.0.24.pom Added: release/felix/org.apache.felix.http.wrappers-1.0.8-javadoc.jar ============================================================================== Binary file - no diff available. Propchange: release/felix/org.apache.felix.http.wrappers-1.0.8-javadoc.jar ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/felix/org.apache.felix.http.wrappers-1.0.8-javadoc.jar.asc ============================================================================== --- release/felix/org.apache.felix.http.wrappers-1.0.8-javadoc.jar.asc (added) +++ release/felix/org.apache.felix.http.wrappers-1.0.8-javadoc.jar.asc Thu Mar 13 08:40:23 2025 @@ -0,0 +1,7 @@ +-----BEGIN PGP SIGNATURE----- + +iHUEABYKAB0WIQRSTiGiaWYxRzGdVfjdKxesopvXqwUCZ860CQAKCRDdKxesopvX +qwMSAQD67guGqKglt04jb2b0CBvS/QH6QHBEsVYUUNt1x0gSFQEAgR8QZBy6Q6Wl +5zH1ByvF3z6AAy2JjNLRXB4E/mpWnwk= +=ywal +-----END PGP SIGNATURE----- Added: release/felix/org.apache.felix.http.wrappers-1.0.8-javadoc.jar.sha1 ============================================================================== --- release/felix/org.apache.felix.http.wrappers-1.0.8-javadoc.jar.sha1 (added) +++ release/felix/org.apache.felix.http.wrappers-1.0.8-javadoc.jar.sha1 Thu Mar 13 08:40:23 2025 @@ -0,0 +1 @@ +cbc23f628f8b1b62f764c035008bf40fa9bb2c68 \ No newline at end of file Added: release/felix/org.apache.felix.http.wrappers-1.0.8-javadoc.jar.sha512 ============================================================================== --- release/felix/org.apache.felix.http.wrappers-1.0.8-javadoc.jar.sha512 (added) +++ release/felix/org.apache.felix.http.wrappers-1.0.8-javadoc.jar.sha512 Thu Mar 13 08:40:23 2025 @@ -0,0 +1 @@ +334e22d0099ec88d93064ccf4a6b827cea36e87617a8edbb3cf7352606eee6c1fcc13458096177eba51423f6968de6f70adf50c9a3525d00684d07c536bf9f92 org.apache.felix.http.wrappers-1.0.8-javadoc.jar Added: release/felix/org.apache.felix.http.wrappers-1.0.8-source-release.tar.gz ============================================================================== Binary file - no diff available. Propchange: release/felix/org.apache.felix.http.wrappers-1.0.8-source-release.tar.gz ------------------------------------------------------------------------------ svn:mime-type = application/x-gzip Added: release/felix/org.apache.felix.http.wrappers-1.0.8-source-release.tar.gz.asc ============================================================================== --- release/felix/org.apache.felix.http.wrappers-1.0.8-source-release.tar.gz.asc (added) +++ release/felix/org.apache.felix.http.wrappers-1.0.8-source-release.tar.gz.asc Thu Mar 13 08:40:23 2025 @@ -0,0 +1,7 @@ +-----BEGIN PGP SIGNATURE----- + +iHUEABYKAB0WIQRSTiGiaWYxRzGdVfjdKxesopvXqwUCZ860CAAKCRDdKxesopvX +q9gaAP9u7RRXDlEyr/6Wuz7YIC5WDZiEa4UcRphvedSRSYephQD/R8J1EnrRUp7C +VPic2dLQwmFd2fblePpqbeChzpVIjwM= +=uFWs +-----END PGP SIGNATURE----- Added: release/felix/org.apache.felix.http.wrappers-1.0.8-source-release.tar.gz.sha1 ============================================================================== --- release/felix/org.apache.felix.http.wrappers-1.0.8-source-release.tar.gz.sha1 (added) +++ release/felix/org.apache.felix.http.wrappers-1.0.8-source-release.tar.gz.sha1 Thu Mar 13 08:40:23 2025 @@ -0,0 +1 @@ +eaaa50f96d24e87963e57f2e5f2ee81d36fc5536 \ No newline at end of file Added: release/felix/org.apache.felix.http.wrappers-1.0.8-source-release.tar.gz.sha512 ============================================================================== --- release/felix/org.apache.felix.http.wrappers-1.0.8-source-release.tar.gz.sha512 (added) +++ release/felix/org.apache.felix.http.wrappers-1.0.8-source-release.tar.gz.sha512 Thu Mar 13 08:40:23 2025 @@ -0,0 +1 @@ +5a59efd33dbacfe7c4be0804cc52885aec03a2cf27ff40c07f8c0678272d3680e886b90dbbcf5a5c1b606519801c020d00d707031309ad1b75317ca04fc8760f \ No newline at end of file Added: release/felix/org.apache.felix.http.wrappers-1.0.8-source-release.zip ============================================================================== Binary file - no diff available. Propchange: release/felix/org.apache.felix.http.wrappers-1.0.8-source-release.zip ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/felix/org.apache.felix.http.wrappers-1.0.8-source-release.zip.asc ============================================================================== --- release/felix/org.apache.felix.http.wrappers-1.0.8-source-release.zip.asc (added) +++ release/felix/org.apache.felix.http.wrappers-1.0.8-source-release.zip.asc Thu Mar 13 08:40:23 2025 @@ -0,0 +1,7 @@ +-----BEGIN PGP SIGNATURE----- + +iHUEABYKAB0WIQRSTiGiaWYxRzGdVfjdKxesopvXqwUCZ860BwAKCRDdKxesopvX +q3aGAP4qgKoheRTPauAFLcfWcuuYC55VBzPlM0+jVuCBVB9ptQEAilBr57fs+qwx +MHj9OmfRMxMjhvNT8o3bcHFg23fr3gE= +=CEll +-----END PGP SIGNATURE----- Added: release/felix/org.apache.felix.http.wrappers-1.0.8-source-release.zip.sha1 ============================================================================== --- release/felix/org.apache.felix.http.wrappers-1.0.8-source-release.zip.sha1 (added) +++ release/felix/org.apache.felix.http.wrappers-1.0.8-source-release.zip.sha1 Thu Mar 13 08:40:23 2025 @@ -0,0 +1 @@ +e319ec2058f2fee387ff99297af9c39234b4a1fc \ No newline at end of file Added: release/felix/org.apache.felix.http.wrappers-1.0.8-source-release.zip.sha512 ============================================================================== --- release/felix/org.apache.felix.http.wrappers-1.0.8-source-release.zip.sha512 (added) +++ release/felix/org.apache.felix.http.wrappers-1.0.8-source-release.zip.sha512 Thu Mar 13 08:40:23 2025 @@ -0,0 +1 @@ +9da7f0b8f7979f74b1f690274e0c319a979cab5a7e0bc1882eae35f9140ad321224e170e6b5357da166f0db98862b79ca00449b3d5c921f2f6a877e789230b86 \ No newline at end of file Added: release/felix/org.apache.felix.http.wrappers-1.0.8-sources.jar ============================================================================== Binary file - no diff available. Propchange: release/felix/org.apache.felix.http.wrappers-1.0.8-sources.jar ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/felix/org.apache.felix.http.wrappers-1.0.8-sources.jar.asc ============================================================================== --- release/felix/org.apache.felix.http.wrappers-1.0.8-sources.jar.asc (added) +++ release/felix/org.apache.felix.http.wrappers-1.0.8-sources.jar.asc Thu Mar 13 08:40:23 2025 @@ -0,0 +1,7 @@ +-----BEGIN PGP SIGNATURE----- + +iHUEABYKAB0WIQRSTiGiaWYxRzGdVfjdKxesopvXqwUCZ860CAAKCRDdKxesopvX +qw5iAQCWbVWxBfphTgb1Yx7MsPLshvmJmHNNSUTPkoRjW5BepgEA9nzD5wE6nqr2 +4AFnVl/7NdJnBdwP40c+uoKWRy2dwgY= +=XEvy +-----END PGP SIGNATURE----- Added: release/felix/org.apache.felix.http.wrappers-1.0.8-sources.jar.sha1 ============================================================================== --- release/felix/org.apache.felix.http.wrappers-1.0.8-sources.jar.sha1 (added) +++ release/felix/org.apache.felix.http.wrappers-1.0.8-sources.jar.sha1 Thu Mar 13 08:40:23 2025 @@ -0,0 +1 @@ +0073269f7f38eaac34e27c99a58171f94d94bf07 \ No newline at end of file Added: release/felix/org.apache.felix.http.wrappers-1.0.8-sources.jar.sha512 ============================================================================== --- release/felix/org.apache.felix.http.wrappers-1.0.8-sources.jar.sha512 (added) +++ release/felix/org.apache.felix.http.wrappers-1.0.8-sources.jar.sha512 Thu Mar 13 08:40:23 2025 @@ -0,0 +1 @@ +29f7534ceb8efa9f3b7b3ec7433e00b9462867901958d227d85ac3ab1da1ea1ed9b421fbbf240a6cda8e68488e9298d4878833a96cde50898eeb2c4cdc2469de org.apache.felix.http.wrappers-1.0.8-sources.jar Added: release/felix/org.apache.felix.http.wrappers-1.0.8.jar ============================================================================== Binary file - no diff available. Propchange: release/felix/org.apache.felix.http.wrappers-1.0.8.jar ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/felix/org.apache.felix.http.wrappers-1.0.8.jar.asc ============================================================================== --- release/felix/org.apache.felix.http.wrappers-1.0.8.jar.asc (added) +++ release/felix/org.apache.felix.http.wrappers-1.0.8.jar.asc Thu Mar 13 08:40:23 2025 @@ -0,0 +1,7 @@ +-----BEGIN PGP SIGNATURE----- + +iHUEABYKAB0WIQRSTiGiaWYxRzGdVfjdKxesopvXqwUCZ86z/wAKCRDdKxesopvX +q/AZAP0ajGQYkZ1am8LP4G08Ae9jYIGEUCKuIbtiufmQB6xSwgD/W2rtHph0cWdq +WlSahk5KNucy2+hvS6yIMrgRnE8t2QQ= +=Q1iE +-----END PGP SIGNATURE----- Added: release/felix/org.apache.felix.http.wrappers-1.0.8.jar.sha1 ============================================================================== --- release/felix/org.apache.felix.http.wrappers-1.0.8.jar.sha1 (added) +++ release/felix/org.apache.felix.http.wrappers-1.0.8.jar.sha1 Thu Mar 13 08:40:23 2025 @@ -0,0 +1 @@ +95f8bc5eb62d79baf341d7c0d1dc972c6c73d595 \ No newline at end of file Added: release/felix/org.apache.felix.http.wrappers-1.0.8.jar.sha512 ============================================================================== --- release/felix/org.apache.felix.http.wrappers-1.0.8.jar.sha512 (added) +++ release/felix/org.apache.felix.http.wrappers-1.0.8.jar.sha512 Thu Mar 13 08:40:23 2025 @@ -0,0 +1 @@ +30815775207a8c2540b6bd4b651a117a360731a0dec1d776afbd0cf233c67368121302772bf4610f6d1e9b6411e047909a59f4903c26eaaabc3566909f4dfca4 org.apache.felix.http.wrappers-1.0.8.jar Added: release/felix/org.apache.felix.http.wrappers-1.0.8.pom ============================================================================== --- release/felix/org.apache.felix.http.wrappers-1.0.8.pom (added) +++ release/felix/org.apache.felix.http.wrappers-1.0.8.pom Thu Mar 13 08:40:23 2025 @@ -0,0 +1,112 @@ +<!-- + 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.8</version> + <packaging>bundle</packaging> + + <scm> + <connection>scm:git:https://github.com/apache/felix-dev.git</connection> + <developerConnection>scm:git:https://github.com/apache/felix-dev.git</developerConnection> + <url>https://gitbox.apache.org/repos/asf?p=felix-dev.git</url> + <tag>org.apache.felix.http.wrappers-1.0.8</tag> + </scm> + + <properties> + <felix.java.version>11</felix.java.version> + </properties> + + <build> + <plugins> + <plugin> + <groupId>org.apache.felix</groupId> + <artifactId>maven-bundle-plugin</artifactId> + <version>5.1.9</version> + <extensions>true</extensions> + <executions> + <execution> + <id>bundle</id> + <phase>package</phase> + <goals> + <goal>bundle</goal> + </goals> + </execution> + <execution> + <id>baseline</id> + <goals> + <goal>baseline</goal> + </goals> + <configuration> + <skip>true</skip> + </configuration> + </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.8.pom.asc ============================================================================== --- release/felix/org.apache.felix.http.wrappers-1.0.8.pom.asc (added) +++ release/felix/org.apache.felix.http.wrappers-1.0.8.pom.asc Thu Mar 13 08:40:23 2025 @@ -0,0 +1,7 @@ +-----BEGIN PGP SIGNATURE----- + +iHUEABYKAB0WIQRSTiGiaWYxRzGdVfjdKxesopvXqwUCZ860BwAKCRDdKxesopvX +q2TkAP4pji3CAtkRnpqBKs3PbWPqMOPqJ757uGuhTM3D/+h5YQD/ZHyxq6B1YtNA +SG4PXwCy2R0SduBo5S3tYtgl5YKLDQw= +=G/Xh +-----END PGP SIGNATURE----- Added: release/felix/org.apache.felix.http.wrappers-1.0.8.pom.sha1 ============================================================================== --- release/felix/org.apache.felix.http.wrappers-1.0.8.pom.sha1 (added) +++ release/felix/org.apache.felix.http.wrappers-1.0.8.pom.sha1 Thu Mar 13 08:40:23 2025 @@ -0,0 +1 @@ +bcb50acddb06a6fb912940c974c79627d5e5e72b \ No newline at end of file Added: release/felix/org.apache.felix.http.wrappers-1.0.8.pom.sha512 ============================================================================== --- release/felix/org.apache.felix.http.wrappers-1.0.8.pom.sha512 (added) +++ release/felix/org.apache.felix.http.wrappers-1.0.8.pom.sha512 Thu Mar 13 08:40:23 2025 @@ -0,0 +1 @@ +90295b5eec94ea3a72c1f9e8338d81df2e0f3a62d87246621ef71a5fb431c6c33e174952998fb3571c83cb0943e69cee1bded7ecbc8f896cee58a8fd3ecf54fd org.apache.felix.http.wrappers-1.0.8.pom Added: release/felix/org.apache.felix.http.wrappers-1.1.10-javadoc.jar ============================================================================== Binary file - no diff available. Propchange: release/felix/org.apache.felix.http.wrappers-1.1.10-javadoc.jar ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/felix/org.apache.felix.http.wrappers-1.1.10-javadoc.jar.asc ============================================================================== --- release/felix/org.apache.felix.http.wrappers-1.1.10-javadoc.jar.asc (added) +++ release/felix/org.apache.felix.http.wrappers-1.1.10-javadoc.jar.asc Thu Mar 13 08:40:23 2025 @@ -0,0 +1,7 @@ +-----BEGIN PGP SIGNATURE----- + +iHUEABYKAB0WIQRSTiGiaWYxRzGdVfjdKxesopvXqwUCZ8600QAKCRDdKxesopvX +q75uAQCScWbW5D15WQrqznqF8/TS3pDGn/eZrwEfN73fPO161wD/Rv7gazgJPVZS +DLk1X1lpUOi33e6BDedfNfUpQ6gAGws= +=BmpP +-----END PGP SIGNATURE----- Added: release/felix/org.apache.felix.http.wrappers-1.1.10-javadoc.jar.sha1 ============================================================================== --- release/felix/org.apache.felix.http.wrappers-1.1.10-javadoc.jar.sha1 (added) +++ release/felix/org.apache.felix.http.wrappers-1.1.10-javadoc.jar.sha1 Thu Mar 13 08:40:23 2025 @@ -0,0 +1 @@ +8ef0d9d17c4eb1081e2d978668c7cf2254bed063 \ No newline at end of file Added: release/felix/org.apache.felix.http.wrappers-1.1.10-javadoc.jar.sha512 ============================================================================== --- release/felix/org.apache.felix.http.wrappers-1.1.10-javadoc.jar.sha512 (added) +++ release/felix/org.apache.felix.http.wrappers-1.1.10-javadoc.jar.sha512 Thu Mar 13 08:40:23 2025 @@ -0,0 +1 @@ +732c3b404b54542b3efa9304e4f8df31422f87552497c2e23589dc80bc8f10e834a5f5d5dac4f3b4b4abb1ebfd9940ab0525aeed40064b913720f58d0c20f0a8 org.apache.felix.http.wrappers-1.1.10-javadoc.jar Added: release/felix/org.apache.felix.http.wrappers-1.1.10-source-release.tar.gz ============================================================================== Binary file - no diff available. Propchange: release/felix/org.apache.felix.http.wrappers-1.1.10-source-release.tar.gz ------------------------------------------------------------------------------ svn:mime-type = application/x-gzip Added: release/felix/org.apache.felix.http.wrappers-1.1.10-source-release.tar.gz.asc ============================================================================== --- release/felix/org.apache.felix.http.wrappers-1.1.10-source-release.tar.gz.asc (added) +++ release/felix/org.apache.felix.http.wrappers-1.1.10-source-release.tar.gz.asc Thu Mar 13 08:40:23 2025 @@ -0,0 +1,7 @@ +-----BEGIN PGP SIGNATURE----- + +iHUEABYKAB0WIQRSTiGiaWYxRzGdVfjdKxesopvXqwUCZ8600AAKCRDdKxesopvX +q7LsAP9nevkiIzmhjhQuVB1dlMZG6chKqh5Kj2t1e8hC6HZq4gD8Dd0rnn2jAH3u +A7DDtJRXDQ9v16psz+rn5VjfHyqR/gs= +=UW3C +-----END PGP SIGNATURE----- Added: release/felix/org.apache.felix.http.wrappers-1.1.10-source-release.tar.gz.sha1 ============================================================================== --- release/felix/org.apache.felix.http.wrappers-1.1.10-source-release.tar.gz.sha1 (added) +++ release/felix/org.apache.felix.http.wrappers-1.1.10-source-release.tar.gz.sha1 Thu Mar 13 08:40:23 2025 @@ -0,0 +1 @@ +279dc819522b9d244fee4197de69b03ad35c6b4e \ No newline at end of file Added: release/felix/org.apache.felix.http.wrappers-1.1.10-source-release.tar.gz.sha512 ============================================================================== --- release/felix/org.apache.felix.http.wrappers-1.1.10-source-release.tar.gz.sha512 (added) +++ release/felix/org.apache.felix.http.wrappers-1.1.10-source-release.tar.gz.sha512 Thu Mar 13 08:40:23 2025 @@ -0,0 +1 @@ +5aea2a694385ce9a1d5e5f3bf3f54908ac8d37a11932dc54d9a96d4b9202d49fc5d5e1d9705c533d3b958e8c44e1e858c8f40ccfbcb71b0185ecfcd44c2af1c6 \ No newline at end of file Added: release/felix/org.apache.felix.http.wrappers-1.1.10-source-release.zip ============================================================================== Binary file - no diff available. Propchange: release/felix/org.apache.felix.http.wrappers-1.1.10-source-release.zip ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/felix/org.apache.felix.http.wrappers-1.1.10-source-release.zip.asc ============================================================================== --- release/felix/org.apache.felix.http.wrappers-1.1.10-source-release.zip.asc (added) +++ release/felix/org.apache.felix.http.wrappers-1.1.10-source-release.zip.asc Thu Mar 13 08:40:23 2025 @@ -0,0 +1,7 @@ +-----BEGIN PGP SIGNATURE----- + +iHUEABYKAB0WIQRSTiGiaWYxRzGdVfjdKxesopvXqwUCZ860zwAKCRDdKxesopvX +q8v9AQDGqXTYAYJZhIN1mLPPfhENa/Nq9Ah+oWuREgev+hZQrgD/Z3ZsfYIiyGJ2 +AOtAhnu4RD6Q/3vbIYhE0T9goLv16gA= +=FVlX +-----END PGP SIGNATURE----- Added: release/felix/org.apache.felix.http.wrappers-1.1.10-source-release.zip.sha1 ============================================================================== --- release/felix/org.apache.felix.http.wrappers-1.1.10-source-release.zip.sha1 (added) +++ release/felix/org.apache.felix.http.wrappers-1.1.10-source-release.zip.sha1 Thu Mar 13 08:40:23 2025 @@ -0,0 +1 @@ +aced01fdc06d00ff81f786662460d61d94b1ecf2 \ No newline at end of file Added: release/felix/org.apache.felix.http.wrappers-1.1.10-source-release.zip.sha512 ============================================================================== --- release/felix/org.apache.felix.http.wrappers-1.1.10-source-release.zip.sha512 (added) +++ release/felix/org.apache.felix.http.wrappers-1.1.10-source-release.zip.sha512 Thu Mar 13 08:40:23 2025 @@ -0,0 +1 @@ +d106cd586aa8e9c980f68df8f2aac3af4a3fb37d838344f6dc7749b7b6a4507174c23f1f8b5201dcdb439e93ff9dbe4807d334c74ceeadb28dc9af9da0196172 \ No newline at end of file Added: release/felix/org.apache.felix.http.wrappers-1.1.10-sources.jar ============================================================================== Binary file - no diff available. Propchange: release/felix/org.apache.felix.http.wrappers-1.1.10-sources.jar ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/felix/org.apache.felix.http.wrappers-1.1.10-sources.jar.asc ============================================================================== --- release/felix/org.apache.felix.http.wrappers-1.1.10-sources.jar.asc (added) +++ release/felix/org.apache.felix.http.wrappers-1.1.10-sources.jar.asc Thu Mar 13 08:40:23 2025 @@ -0,0 +1,7 @@ +-----BEGIN PGP SIGNATURE----- + +iHUEABYKAB0WIQRSTiGiaWYxRzGdVfjdKxesopvXqwUCZ8600AAKCRDdKxesopvX +q5vPAQDRkxg3J9eONKGZMkBw1eBwOCjkLB/FNnxavrnkekcIFQD+NLf6vBuQSAP2 +1Q+ZX9u1+Hv/l1ZQ34ajyf6NLlRBdgY= +=jYn8 +-----END PGP SIGNATURE----- Added: release/felix/org.apache.felix.http.wrappers-1.1.10-sources.jar.sha1 ============================================================================== --- release/felix/org.apache.felix.http.wrappers-1.1.10-sources.jar.sha1 (added) +++ release/felix/org.apache.felix.http.wrappers-1.1.10-sources.jar.sha1 Thu Mar 13 08:40:23 2025 @@ -0,0 +1 @@ +1a92fa3daa235b2cea79842bf49e0ff72f85afcf \ No newline at end of file Added: release/felix/org.apache.felix.http.wrappers-1.1.10-sources.jar.sha512 ============================================================================== --- release/felix/org.apache.felix.http.wrappers-1.1.10-sources.jar.sha512 (added) +++ release/felix/org.apache.felix.http.wrappers-1.1.10-sources.jar.sha512 Thu Mar 13 08:40:23 2025 @@ -0,0 +1 @@ +5ca99482ef35f58757e7458de9841aacc3fd34a69ad1184ea648578b273c75e097c7af61c169cac740b1d52f5e3c1a9e627d4d293898810098d04160c2a025a3 org.apache.felix.http.wrappers-1.1.10-sources.jar Added: release/felix/org.apache.felix.http.wrappers-1.1.10.jar ============================================================================== Binary file - no diff available. Propchange: release/felix/org.apache.felix.http.wrappers-1.1.10.jar ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: release/felix/org.apache.felix.http.wrappers-1.1.10.jar.asc ============================================================================== --- release/felix/org.apache.felix.http.wrappers-1.1.10.jar.asc (added) +++ release/felix/org.apache.felix.http.wrappers-1.1.10.jar.asc Thu Mar 13 08:40:23 2025 @@ -0,0 +1,7 @@ +-----BEGIN PGP SIGNATURE----- + +iHUEABYKAB0WIQRSTiGiaWYxRzGdVfjdKxesopvXqwUCZ860zgAKCRDdKxesopvX +q5dFAP4kHaiIH7w0SQGqDesDp+ATn9EL7F89fyJuFI01qspnHwEA2mMjIA4bHYzi +h2rVySO9QkbrkcXUicBNoxtE0chodg4= +=XiG7 +-----END PGP SIGNATURE----- Added: release/felix/org.apache.felix.http.wrappers-1.1.10.jar.sha1 ============================================================================== --- release/felix/org.apache.felix.http.wrappers-1.1.10.jar.sha1 (added) +++ release/felix/org.apache.felix.http.wrappers-1.1.10.jar.sha1 Thu Mar 13 08:40:23 2025 @@ -0,0 +1 @@ +f9820ba9b29d908f75779b9b48d6f0c76add26e0 \ No newline at end of file Added: release/felix/org.apache.felix.http.wrappers-1.1.10.jar.sha512 ============================================================================== --- release/felix/org.apache.felix.http.wrappers-1.1.10.jar.sha512 (added) +++ release/felix/org.apache.felix.http.wrappers-1.1.10.jar.sha512 Thu Mar 13 08:40:23 2025 @@ -0,0 +1 @@ +8cdc024b51fc2194c01d894c44d96b2515d539648a7390df37ce7b27e8b2cf71b10faf3c0cf64768de428f2d39dd1005f814bb0380d396a92edc795b216bc87f org.apache.felix.http.wrappers-1.1.10.jar Added: release/felix/org.apache.felix.http.wrappers-1.1.10.pom ============================================================================== --- release/felix/org.apache.felix.http.wrappers-1.1.10.pom (added) +++ release/felix/org.apache.felix.http.wrappers-1.1.10.pom Thu Mar 13 08:40:23 2025 @@ -0,0 +1,116 @@ +<!-- + Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you under the Apache License, Version 2.0 (the + "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +--> +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> + + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.apache.felix</groupId> + <artifactId>felix-parent</artifactId> + <version>9</version> + <relativePath>../pom/pom.xml</relativePath> + </parent> + + <name>Apache Felix Http Wrappers</name> + <artifactId>org.apache.felix.http.wrappers</artifactId> + <version>1.1.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.wrappers-1.1.10</tag> + </scm> + + <properties> + <felix.java.version>11</felix.java.version> + <baseline.skip>true</baseline.skip> + </properties> + + <build> + <plugins> + <plugin> + <groupId>org.apache.felix</groupId> + <artifactId>maven-bundle-plugin</artifactId> + <version>5.1.9</version> + <extensions>true</extensions> + <executions> + <execution> + <id>bundle</id> + <phase>package</phase> + <goals> + <goal>bundle</goal> + </goals> + </execution> + <execution> + <id>baseline</id> + <goals> + <goal>baseline</goal> + </goals> + </execution> + </executions> + <configuration> + <instructions> + <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName> + <Bundle-Version>${project.version}</Bundle-Version> + </instructions> + </configuration> + </plugin> + </plugins> + </build> + + <dependencies> + <dependency> + <groupId>org.jetbrains</groupId> + <artifactId>annotations</artifactId> + <version>16.0.2</version> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>org.osgi</groupId> + <artifactId>osgi.annotation</artifactId> + <version>6.0.1</version> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>javax.servlet</groupId> + <artifactId>javax.servlet-api</artifactId> + <version>4.0.1</version> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>jakarta.servlet</groupId> + <artifactId>jakarta.servlet-api</artifactId> + <version>6.0.0</version> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>4.13.2</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.mockito</groupId> + <artifactId>mockito-core</artifactId> + <version>5.7.0</version> + <scope>test</scope> + </dependency> + </dependencies> +</project> Added: release/felix/org.apache.felix.http.wrappers-1.1.10.pom.asc ============================================================================== --- release/felix/org.apache.felix.http.wrappers-1.1.10.pom.asc (added) +++ release/felix/org.apache.felix.http.wrappers-1.1.10.pom.asc Thu Mar 13 08:40:23 2025 @@ -0,0 +1,7 @@ +-----BEGIN PGP SIGNATURE----- + +iHUEABYKAB0WIQRSTiGiaWYxRzGdVfjdKxesopvXqwUCZ860zgAKCRDdKxesopvX +q1Y9AQDYcZM/sFma+ZpwIFvZ63DpFeHO84RZPoSFn0OdJ5tCSAD/cYsOwe7BIOUA +AAK/yubimr0dyhlwj1NMc4/OKIPXjgM= +=azyU +-----END PGP SIGNATURE----- Added: release/felix/org.apache.felix.http.wrappers-1.1.10.pom.sha1 ============================================================================== --- release/felix/org.apache.felix.http.wrappers-1.1.10.pom.sha1 (added) +++ release/felix/org.apache.felix.http.wrappers-1.1.10.pom.sha1 Thu Mar 13 08:40:23 2025 @@ -0,0 +1 @@ +c338d89053ddbb703f3a2990d72d284a42dbd417 \ No newline at end of file Added: release/felix/org.apache.felix.http.wrappers-1.1.10.pom.sha512 ============================================================================== --- release/felix/org.apache.felix.http.wrappers-1.1.10.pom.sha512 (added) +++ release/felix/org.apache.felix.http.wrappers-1.1.10.pom.sha512 Thu Mar 13 08:40:23 2025 @@ -0,0 +1 @@ +6ab6a8caef70873fdda635bbe9c796cbe1485b9e09910c71ae6b4725be6c0627f55b8e182d3f9120bb256e329ce2b6546dd486a0c1e4b1e5026187227e712f85 org.apache.felix.http.wrappers-1.1.10.pom