Added: release/felix/org.apache.felix.http.jetty-5.1.2.pom
==============================================================================
--- release/felix/org.apache.felix.http.jetty-5.1.2.pom (added)
+++ release/felix/org.apache.felix.http.jetty-5.1.2.pom Mon Oct 2 09:14:40 2023
@@ -0,0 +1,440 @@
+<!--
+ 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>org.apache.felix.http.parent</artifactId>
+ <version>13</version>
+ <relativePath>../parent/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.2</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.2</tag>
+ </scm>
+
+ <properties>
+ <felix.java.version>11</felix.java.version>
+ <jetty.version>11.0.16</jetty.version>
+ <baseline.skip>true</baseline.skip>
+ </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() )) {
+ 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>
+ <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,
+ !org.eclipse.jetty.version,
+ org.eclipse.jetty.*,
+ 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<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=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>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<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=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>
+ </plugins>
+ </build>
+
+ <dependencies>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>javax.servlet-api</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.osgi</groupId>
+ <artifactId>osgi.core</artifactId>
+ </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.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.2</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>org.osgi</groupId>
+ <artifactId>org.osgi.service.log</artifactId>
+ <version>1.3.0</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+</project>
Added: release/felix/org.apache.felix.http.jetty-5.1.2.pom.asc
==============================================================================
--- release/felix/org.apache.felix.http.jetty-5.1.2.pom.asc (added)
+++ release/felix/org.apache.felix.http.jetty-5.1.2.pom.asc Mon Oct 2 09:14:40
2023
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmUWYAkACgkQP89Sn/Ly
+egYCcxAAsWXRr5ee6rE/6afNWB3o/RdUe3paL6Mp/WhFNb0IbSV27/ahdFWFt+FN
+zIs0ABuAPltcqDzWTkogmONP9iR1nTIu0vEvKsR2CEWMVlKsvco0/WLZ1U8at+/5
+UVqRiiwWePp1heEm5MlsHYyTjNQ/59pnYWIXp3coUq+DI7/msqnBPcC5EGsYdJrD
+hslcafXnaCjsNa+CeDIYK90aWxDiu+mKhpax6l0h+Rr/Wy1C2+mMNvILBpJ3jFNM
+3AxqgORdHr2/zkdaSRBtIerNy5v6La4YI7xBm4UknwADG2iuNIZwHxvuZeC1Jznu
+xhidJ6oBvG0bZQEfMQmsCmMdE7mtcwIFKVViKM6D8m8gPnpHKY7RVePl8D8BKGj1
++5s1pH+/pazE7FesfnYMROlTgBmDVvkKWvKTgtKdmxVTvy21mrt4CLSr2rzOUc43
+9ksLuPcBIv0QQAzSje5q+1ysQQw+zKgV1Vw1HDVVSYLvieL2GY8DS8WT1dkKeu+Y
+5Rwc1nxOgHATIcpmB07Hszl+Ymw4K/D35hRZQ0N0pSA65rZXEeyxWLdw7UiFctXE
+ceoa273vIPFQBz1UW8mjB5gDOJ/S5pqZFAYyv2kNEBhCFMm4hdI//0xxDfS10UIS
+fKEWT4HLFFN2ENFvW8gqEMt680nxHqVfoO1h3bx2e4h5GbfGYBw=
+=gzvy
+-----END PGP SIGNATURE-----
Added: release/felix/org.apache.felix.http.jetty-5.1.2.pom.sha1
==============================================================================
--- release/felix/org.apache.felix.http.jetty-5.1.2.pom.sha1 (added)
+++ release/felix/org.apache.felix.http.jetty-5.1.2.pom.sha1 Mon Oct 2
09:14:40 2023
@@ -0,0 +1 @@
+e387362bafe81926353e34866a0863f61cc777d1
\ No newline at end of file
Added: release/felix/org.apache.felix.http.jetty-5.1.2.pom.sha512
==============================================================================
--- release/felix/org.apache.felix.http.jetty-5.1.2.pom.sha512 (added)
+++ release/felix/org.apache.felix.http.jetty-5.1.2.pom.sha512 Mon Oct 2
09:14:40 2023
@@ -0,0 +1 @@
+d06f1f2e96a52ce57c066896038cb01f05ce9d1d2aa227ab6f22076793b8ce37d02d8d77aba56d8391fee4b87ecc9e9bbc1d29b8243a6c9176d7c447cc45f437
org.apache.felix.http.jetty-5.1.2.pom
Added:
release/felix/org.apache.felix.http.servlet-api-3.0.0-source-release.tar.gz
==============================================================================
Binary file - no diff available.
Propchange:
release/felix/org.apache.felix.http.servlet-api-3.0.0-source-release.tar.gz
------------------------------------------------------------------------------
svn:mime-type = application/x-gzip
Added:
release/felix/org.apache.felix.http.servlet-api-3.0.0-source-release.tar.gz.asc
==============================================================================
---
release/felix/org.apache.felix.http.servlet-api-3.0.0-source-release.tar.gz.asc
(added)
+++
release/felix/org.apache.felix.http.servlet-api-3.0.0-source-release.tar.gz.asc
Mon Oct 2 09:14:40 2023
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmUWYkwACgkQP89Sn/Ly
+egZb6Q/9EZkBL1nWQvGQ+KfozeB/zZt7573/Ga8BfLfvQ6HSOyeyj4+CVhVA4reM
+aFEVwOcbVItI58V2oIXH740+8axReO8DjhVu1Gm/f1DW15HeTs2LM9HE2XmbrFb6
+jaVz4MPeOjcQvoxaFrcMSPTf/8Nf6+Fyeyx9ZrTe9SHGUbhoQnqWenoPMRX32w3v
+hdk9oMaihXCbCxBh+l6jiGMY+0r/HS0YgoTvNoSXyM0T9pimWvSVQqiHiLDJC1+a
+3caIEPOsF3RrKvZI8CUiHEANzHJH0jsrAOv+9cmBRoQ+GGN1RG1ns8MIYp5UarOr
+4SmCz/jX9/Xmc5MhmO3dLFrHbMnb3oHjcmUc/h1fzctdywWWfyT5AcSruevghx0H
+eJv7+jU7TN5bVkk+HkCWcdTLnV8MK2e0lZrdH5RmXydvsPfWFFKb+n4SSD3UE6Pw
+KNbAJUd+SEDpQJe0XXM2xtfmrAJFQhuah4uzcwcijE2jfexPyXRmtRcYubznAiNR
+XGovZOhxB2qEgniVQZAqYYCmtJKcX8mRrUYbGzIIsmGySshXMrYndAbd99H/eb3l
+EJlZKiz6Wg1lV5m+tpkkDHHju52XXZ5vv5Ptq+OKQlVUqPGr6jTzjzVFw+dr5xnV
+cQqAcCyED0Z/hSStqffAhqRAtTkhOFcP+onaLbbexzNYkJqD0fY=
+=pQF2
+-----END PGP SIGNATURE-----
Added:
release/felix/org.apache.felix.http.servlet-api-3.0.0-source-release.tar.gz.sha1
==============================================================================
---
release/felix/org.apache.felix.http.servlet-api-3.0.0-source-release.tar.gz.sha1
(added)
+++
release/felix/org.apache.felix.http.servlet-api-3.0.0-source-release.tar.gz.sha1
Mon Oct 2 09:14:40 2023
@@ -0,0 +1 @@
+8c737a5da3fcd6518f26868fe427fd672bcf0464
\ No newline at end of file
Added:
release/felix/org.apache.felix.http.servlet-api-3.0.0-source-release.tar.gz.sha512
==============================================================================
---
release/felix/org.apache.felix.http.servlet-api-3.0.0-source-release.tar.gz.sha512
(added)
+++
release/felix/org.apache.felix.http.servlet-api-3.0.0-source-release.tar.gz.sha512
Mon Oct 2 09:14:40 2023
@@ -0,0 +1 @@
+d4786e18a74dc744d46a8ebb83eab59289ab522ae421a3c73141809b0a557f1af2b16cdef03bf95fbc7b495236363211a845fcfd189c65b99378ae5736bcf152
org.apache.felix.http.servlet-api-3.0.0-source-release.tar.gz
Added: release/felix/org.apache.felix.http.servlet-api-3.0.0-source-release.zip
==============================================================================
Binary file - no diff available.
Propchange:
release/felix/org.apache.felix.http.servlet-api-3.0.0-source-release.zip
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added:
release/felix/org.apache.felix.http.servlet-api-3.0.0-source-release.zip.asc
==============================================================================
---
release/felix/org.apache.felix.http.servlet-api-3.0.0-source-release.zip.asc
(added)
+++
release/felix/org.apache.felix.http.servlet-api-3.0.0-source-release.zip.asc
Mon Oct 2 09:14:40 2023
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmUWYkwACgkQP89Sn/Ly
+egZCwxAArkrGwob+iUsC1QM5suhPPz7UmNhRIV4KlU9I0IjlGs3lAJEUfqeoTmX6
+wEUOVBWFOLsaHtL9/Ja9/iuaxePXTGf4hvIiwLTX5Ead0h27uBR6tIQlDsWWu7Yr
+2YhAz6AmY6eDVZvo/oHTDrOYRz7f2JxM547Vhc6TshhUfFKgVgpo4ZFRPD0Db3gt
+5YaK5zrl/POWEGT9Bd4odfnUDdoiB7MIxgB6ECKAzsJ7fNPLVZc+vsQD2ygz74d6
+yLqZHOlFNtxAjKc71HiPJCO2UFvM0yDfJyWw2UAXYXJtnzwPdle4MA3Gui9WdCOD
+h8gvUnAFLbUWty7ruXXRrHadO0arQKY5IoEBiZHdj588v1cU4B+gjoOt/LEIEPQl
+ixzycP9Mc3VEUnHkvsA7kY7c555xxpVjbh7MNF2R9/BvYphvSO0uH96w3lkGmpqH
+Ta2SBTXllejdEEvj4XK4LvJuOfab08RAGKvSd6YEavK5S1CkVRNoRmL9SSjOG7py
+sIPPlhqP2WESmE77IggukaVVTPfgP6RBa+9+O6HE12GuFO3U4tGshQ7qBTDFgG7M
+GMX+9E1ih948aDrLCINu0NiENXA3uy0BvHHlC+S55ITinj5ESgF5JWOYp/sA+WS9
+VPblCRO6Q7Ue2xtocseH0LYq+bgENIZHaUBMWyT9D8JrWzrE8Sk=
+=2h/z
+-----END PGP SIGNATURE-----
Added:
release/felix/org.apache.felix.http.servlet-api-3.0.0-source-release.zip.sha1
==============================================================================
---
release/felix/org.apache.felix.http.servlet-api-3.0.0-source-release.zip.sha1
(added)
+++
release/felix/org.apache.felix.http.servlet-api-3.0.0-source-release.zip.sha1
Mon Oct 2 09:14:40 2023
@@ -0,0 +1 @@
+c20cb6e73cc4db7ab660683c5d60a624251afeaf
\ No newline at end of file
Added:
release/felix/org.apache.felix.http.servlet-api-3.0.0-source-release.zip.sha512
==============================================================================
---
release/felix/org.apache.felix.http.servlet-api-3.0.0-source-release.zip.sha512
(added)
+++
release/felix/org.apache.felix.http.servlet-api-3.0.0-source-release.zip.sha512
Mon Oct 2 09:14:40 2023
@@ -0,0 +1 @@
+60f72170e6b6a595ad1004dafadaa247d4bac034668ace08aaa2dca6e32f0c189cecc70bb4671613ccf8dd931b7854573cc614ad8e53b8fc14ed155387590d69
org.apache.felix.http.servlet-api-3.0.0-source-release.zip
Added: release/felix/org.apache.felix.http.servlet-api-3.0.0-sources.jar
==============================================================================
Binary file - no diff available.
Propchange: release/felix/org.apache.felix.http.servlet-api-3.0.0-sources.jar
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added: release/felix/org.apache.felix.http.servlet-api-3.0.0-sources.jar.asc
==============================================================================
--- release/felix/org.apache.felix.http.servlet-api-3.0.0-sources.jar.asc
(added)
+++ release/felix/org.apache.felix.http.servlet-api-3.0.0-sources.jar.asc Mon
Oct 2 09:14:40 2023
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmUWYkwACgkQP89Sn/Ly
+egazAxAAjYKXzKwoYKU6zypW1lU7aOBY0BL5V999eGRUaz07oyFk2lqKgUVJBk4E
+YyObd4w/Q9FaLiwMYKPL/oqc+DK59mtqzDSeXWqR/nzZu0tAWlUiVMUgdjJ1YriN
+aPSqEE5x0q2F5lx1qRdDD6XjuWpIRG2fAdqNIOlMc8YLlabO07AAT6fpCHn0RMzJ
+JpZd8Acg/7zSCgYBz6lPBvMx65e7ghh+QZD4a62bJYAMb90yYzZc6br8/hZP/SSQ
+2R4TCQfS7uOFyM8Bx5wbeoHVxdiaxCyzRdmXNS2CgHBd1sSnrnHdgBKevGiiC/aY
+vQb6FIetpDP5T96bZIPogHCVsqLlDvqRVv4zyNQIpT72ZQHuPGVt686bBoXqkrDA
+vR0XWqnaWGA7WO831yMou+eAyQu0m6i/cdBxF6kbNuUz7Vhso7BZFktqqAWNYRNY
+1q9mAXFDabrhwqoxbNkeRIzwReahS3whSoqzRUXsJ6Z1NVbsZC+u/uwRjiMtjjVd
+772d4+6ZDoRIwMW05N3cUSwrJtrY5dE3Uh3CWUF15rShEoXdfevbYdAH7fp/6WRH
+cllCZMptIKLjh9Cy/Ts4Wsb5FTNKibB0o7NDRVGJUJAS2Wa2h8Yf4XGh6+Qt9dHf
+kYPpbujozxHbF7NE2RiiBcEIasYo3tAKC2laBOArs1Mqmbe9F10=
+=ktwU
+-----END PGP SIGNATURE-----
Added: release/felix/org.apache.felix.http.servlet-api-3.0.0-sources.jar.sha1
==============================================================================
--- release/felix/org.apache.felix.http.servlet-api-3.0.0-sources.jar.sha1
(added)
+++ release/felix/org.apache.felix.http.servlet-api-3.0.0-sources.jar.sha1 Mon
Oct 2 09:14:40 2023
@@ -0,0 +1 @@
+c8b9008a4877f8df1647f707a100ef932a38e004
\ No newline at end of file
Added: release/felix/org.apache.felix.http.servlet-api-3.0.0-sources.jar.sha512
==============================================================================
--- release/felix/org.apache.felix.http.servlet-api-3.0.0-sources.jar.sha512
(added)
+++ release/felix/org.apache.felix.http.servlet-api-3.0.0-sources.jar.sha512
Mon Oct 2 09:14:40 2023
@@ -0,0 +1 @@
+bbf48ac6c746f77cfb319b4efe79d35a2096194bb8a6c6cdcdccc1c6a6946af42f485cfafaeeaf2ff1654b5ef9cbe48be266585800dbe006eab72283ecca409a
org.apache.felix.http.servlet-api-3.0.0-sources.jar
Added: release/felix/org.apache.felix.http.servlet-api-3.0.0.jar
==============================================================================
Binary file - no diff available.
Propchange: release/felix/org.apache.felix.http.servlet-api-3.0.0.jar
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added: release/felix/org.apache.felix.http.servlet-api-3.0.0.jar.asc
==============================================================================
--- release/felix/org.apache.felix.http.servlet-api-3.0.0.jar.asc (added)
+++ release/felix/org.apache.felix.http.servlet-api-3.0.0.jar.asc Mon Oct 2
09:14:40 2023
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmUWYksACgkQP89Sn/Ly
+egZc0xAAkGYRPpajvoe90HpsVbYjGxUpMte4+TArAp4muI4xhPTqE9wOLZTX1zE+
+lhWgBzfa4uuio5LwU7HPdzXkjbwNJXOYlGZFSi/Sd10novkWBzCPJTyC8ms8JxH2
+jLskgg1O2pScAajM9z2GeOyfoAMQvfqRH4o7fjGjnxhAoHUvGVURtHsTjVJhLLoE
+bsGTCPzSGGNTJlM47xP31F5mZEl/53r0/Cg7Sd3MQ0RoRGDCe2Mc4RcppKQBVgXV
+ny2KdYBpAFQWwkws6e1xZuHrdd1DcPij4p8zYmdNn4tX9FETIKej1aiiMuOglyOZ
+ggU1Ztip17UPW8Uo5uDWaw2tqKUVlij/gfkFAgDGEvtHKCKZoaymWPFHu+4+FNJw
+R7k/bZNhJX9gE9PI3oo0lB3C7wWksmpMOhgU2xN3EhwHVEB9QdReQWUwg/gB4g+B
+l1k/1DMez7ST4MCv/THFGWqOfMjB/epljqL5vsWmElCRMQhJHNjUqJVIELmLW8fB
+eJi6hES3M9jo92ibKe3R1iw4TxkYCHWSGm90hiFVEuQncaZuXpihJ+lCV/7Jhvfi
+ggUj3s4zRl/qep54+k9PzOnLxNYETP1GoWprlkKRQ89R33aPmIVije+wc2OMn0TK
+HxTlFKEKDuqD1jC9zWL1+MHUzaD1v/UcEZhe9Nksf2EGp3PoOAM=
+=JiR5
+-----END PGP SIGNATURE-----
Added: release/felix/org.apache.felix.http.servlet-api-3.0.0.jar.sha1
==============================================================================
--- release/felix/org.apache.felix.http.servlet-api-3.0.0.jar.sha1 (added)
+++ release/felix/org.apache.felix.http.servlet-api-3.0.0.jar.sha1 Mon Oct 2
09:14:40 2023
@@ -0,0 +1 @@
+4869573642fc58533fc067c932e9fad5d0949956
\ No newline at end of file
Added: release/felix/org.apache.felix.http.servlet-api-3.0.0.jar.sha512
==============================================================================
--- release/felix/org.apache.felix.http.servlet-api-3.0.0.jar.sha512 (added)
+++ release/felix/org.apache.felix.http.servlet-api-3.0.0.jar.sha512 Mon Oct 2
09:14:40 2023
@@ -0,0 +1 @@
+5a172294ce6742f7580126ca21e524b3ddf83ef2289d4a4067a5401be1fe4c8143f6d68e69b566e9ddb381ca8b861aaec15c7c0c4f0ee0833fe5f5ca4ecf161b
org.apache.felix.http.servlet-api-3.0.0.jar
Added: release/felix/org.apache.felix.http.servlet-api-3.0.0.pom
==============================================================================
--- release/felix/org.apache.felix.http.servlet-api-3.0.0.pom (added)
+++ release/felix/org.apache.felix.http.servlet-api-3.0.0.pom Mon Oct 2
09:14:40 2023
@@ -0,0 +1,124 @@
+<!-- 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>org.apache.felix.http.parent</artifactId>
+ <version>12</version>
+ <relativePath>../parent/pom.xml</relativePath>
+ </parent>
+
+ <name>Apache Felix Servlet API</name>
+ <description>Provides the Servlet API for use by applications</description>
+ <artifactId>org.apache.felix.http.servlet-api</artifactId>
+ <version>3.0.0</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.servlet-api-3.0.0</tag>
+ </scm>
+
+ <properties>
+ <!-- Skip baselining -->
+ <baseline.skip>true</baseline.skip>
+ </properties>
+
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-dependency-plugin</artifactId>
+ <version>3.6.0</version>
+ <executions>
+ <execution>
+ <id>process-servlet-5</id>
+ <goals>
+ <goal>unpack</goal>
+ </goals>
+ <configuration>
+ <artifactItems>
+ <artifactItem>
+ <groupId>jakarta.servlet</groupId>
+
<artifactId>jakarta.servlet-api</artifactId>
+ <version>5.0.0</version>
+
<includes>**/HttpSessionContext.class,**/HttpUtils.class,**/SingleThreadModel.class</includes>
+ </artifactItem>
+ </artifactItems>
+
<outputDirectory>${project.build.directory}/classes</outputDirectory>
+ </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>
+ <Export-Package>
+
javax.servlet;version=2.6;uses:="javax.servlet.annotation,javax.servlet.descriptor",
+
javax.servlet.annotation;version=2.6;uses:="javax.servlet",
+ javax.servlet.descriptor;version=2.6,
+
javax.servlet.http;version=2.6;uses:="javax.servlet",
+
javax.servlet;version=3.0;uses:="javax.servlet.annotation,javax.servlet.descriptor",
+
javax.servlet.annotation;version=3.0;uses:="javax.servlet",
+ javax.servlet.descriptor;version=3.0,
+
javax.servlet.http;version=3.0;uses:="javax.servlet",
+
javax.servlet;version=3.1;uses:="javax.servlet.annotation,javax.servlet.descriptor",
+
javax.servlet.annotation;version=3.1;uses:="javax.servlet",
+ javax.servlet.descriptor;version=3.1,
+
javax.servlet.http;version=3.1;uses:="javax.servlet",
+
javax.servlet;version=4.0;uses:="javax.servlet.annotation,javax.servlet.descriptor",
+
javax.servlet.annotation;version=4.0;uses:="javax.servlet",
+ javax.servlet.descriptor;version=4.0,
+
javax.servlet.http;version=4.0;uses:="javax.servlet",
+
jakarta.servlet;version=5.0;uses:="jakarta.servlet.annotation,jakarta.servlet.descriptor",
+
jakarta.servlet.annotation;version=5.0;uses:="jakarta.servlet",
+ jakarta.servlet.descriptor;version=5.0,
+
jakarta.servlet.http;version=5.0;uses:="jakarta.servlet",
+
jakarta.servlet;version=6.0;uses:="jakarta.servlet.annotation,jakarta.servlet.descriptor",
+
jakarta.servlet.annotation;version=6.0;uses:="jakarta.servlet",
+ jakarta.servlet.descriptor;version=6.0,
+
jakarta.servlet.http;version=6.0;uses:="jakarta.servlet"
+ </Export-Package>
+ <Import-Package>!*</Import-Package>
+ <Provide-Capability>
+
osgi.contract;osgi.contract="JavaServlet";version:List<Version>="2.6,3.0,3.1,4.0";
+
uses:="javax.servlet,javax.servlet.http,javax.servlet.descriptor,javax.servlet.annotation",
+
osgi.contract;osgi.contract="JakartaServlet";version:List<Version>="5.0,6.0";
+
uses:="jakarta.servlet,jakarta.servlet.http,jakarta.servlet.descriptor,jakarta.servlet.annotation"
+ </Provide-Capability>
+
<Embed-Dependency>tomcat-servlet-api;inline=true,jakarta.servlet-api;inline=true</Embed-Dependency>
+ </instructions>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.tomcat</groupId>
+ <artifactId>tomcat-servlet-api</artifactId>
+ <version>9.0.80</version>
+ </dependency>
+ <dependency>
+ <groupId>jakarta.servlet</groupId>
+ <artifactId>jakarta.servlet-api</artifactId>
+ <version>6.0.0</version>
+ </dependency>
+ </dependencies>
+
+</project>
Added: release/felix/org.apache.felix.http.servlet-api-3.0.0.pom.asc
==============================================================================
--- release/felix/org.apache.felix.http.servlet-api-3.0.0.pom.asc (added)
+++ release/felix/org.apache.felix.http.servlet-api-3.0.0.pom.asc Mon Oct 2
09:14:40 2023
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmUWYkwACgkQP89Sn/Ly
+egbwDQ/+PjIycqSK8gLT0Hmy4iVB0qSNkXCGqTDv6H4BRPa+nQ/VxA6AW6QsWFDm
+/Wq+fd2weJ/YQwygyVOw5i+WfzmPerbjul/lgnCrCLr9H7mAzvG5dK8116moFbs8
+d6rfeetDLrpsvnIr9jFJxMd1vmTYevU47HDVqSaDbtq5wmnaz6Y2wuzlNWY5Y3OA
+QFBIxHDSUNLhG9mhqDkUnrWtRZBrBAIZ9cSUFBw18DEAk+KVBjBSnDN1cqOGNuum
+dNFwHOk+LWfLkDvf9C2ieFh0F36HT0jx6K3xblelNUYHabGM9K+kKXry/Q02WG5v
+7cum2YyBnoGdkOZsmAy2T+U+99oT9ODxO4Oo1saKXGl4w8u7j++2cvf36PXlkuRx
+cDTjtRIwVzs1BpSyIx/eOWLiByXmLyigUbJI394W1Eb2/9tueYHPgzmOuW5jM0xS
+cED0GRbi6LhyewBC2A6hrugByqKmlQ+alJyE/DQyOfCBesRcdr6AsQvlZ393AnfO
+sV2EU++9Uq2bIUB2SKTJ3bWOGCGtdR9o1HfjhdWesWW22byi2jVTvkHjL+xByPjU
+VdIRb2cg5SelAh17bmCbd3NDsKUmHQqrUdaay6rQEemdG5d5kO1i7/9Xhx1Eb2FJ
+i5UTwKS+D56eX9sykr8OpuexHa8jBwmIJm/NB2PtY1X6yhgfs+o=
+=Ooht
+-----END PGP SIGNATURE-----
Added: release/felix/org.apache.felix.http.servlet-api-3.0.0.pom.sha1
==============================================================================
--- release/felix/org.apache.felix.http.servlet-api-3.0.0.pom.sha1 (added)
+++ release/felix/org.apache.felix.http.servlet-api-3.0.0.pom.sha1 Mon Oct 2
09:14:40 2023
@@ -0,0 +1 @@
+98b3a4a270cbf985db38db908ec7897e21cd4b20
\ No newline at end of file
Added: release/felix/org.apache.felix.http.servlet-api-3.0.0.pom.sha512
==============================================================================
--- release/felix/org.apache.felix.http.servlet-api-3.0.0.pom.sha512 (added)
+++ release/felix/org.apache.felix.http.servlet-api-3.0.0.pom.sha512 Mon Oct 2
09:14:40 2023
@@ -0,0 +1 @@
+5e926dfef0af98f4cea7af2e128213e33e4f6ba2a0eeb99d061401ff0ab66533a4519a9808cdba1d42e8945454457f80cf059dfe0d6c37e0b66d571b9f915d2a
org.apache.felix.http.servlet-api-3.0.0.pom
Added: release/felix/org.apache.felix.http.wrappers-1.1.2-javadoc.jar
==============================================================================
Binary file - no diff available.
Propchange: release/felix/org.apache.felix.http.wrappers-1.1.2-javadoc.jar
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added: release/felix/org.apache.felix.http.wrappers-1.1.2-javadoc.jar.asc
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.1.2-javadoc.jar.asc (added)
+++ release/felix/org.apache.felix.http.wrappers-1.1.2-javadoc.jar.asc Mon Oct
2 09:14:40 2023
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmUWXuUACgkQP89Sn/Ly
+egZ5CRAAj419PoZL8SlMMTupW9i8vKPFiii816Mgxtt2Qn2lJnWjKfbt8KXZXA5t
+VeKCIuaNEV+B6nOL1jw1WmeXado7d7b2UH0mIpxQgCXwVAkpIekykdrFHATlPB9X
+aTK3/B06UGFpdvbibYZ7z8uE6Ss3xYISffU81gRoo66OZ6o0GNunrP0j2PcEQe0/
+tjFVufbwR4sUk6mMjv8zGaEQ8JiKhfFqccDWg1jdyvm8t6CaTXLRT95piHe+yiXr
+jHwTgqwgsT08u9r/9RquOk+HmMueY/oH7PLjHy/uzPRqzpek1uq286MjYa5nfY8p
+IhFmLTF0Ato3Che9GpyMmHF6wIeYfpKdEKckVwTkTAV/q4Y/mDP8ssjM4N1LoQo7
+TfQBfYX6FbkeK37UmBZ+6nHfiJT6Y2s6zVn/Walbjcb5kNYprJDkeJssesCWc92w
+eRPpgZUuqDeJgbfwiMq2T9xzRP3qgWrQRNk6XaRYVmsRnE5MG6l8HXp82lL+HOnp
+9Zy8om4xkhVfdCqXmFKsI6rk+fB8NSuPiADCJIt+OVtEO351XIT7MTCCCuSbGQ53
+PcR3Z+eBZJWfa2kFJchJbdTMGlH0qAQ/2TzejyFc50hHnskfyWutqLFaAXaVCzHz
+Lj+w25Q9uSbNaBXokkcLG/ov77fQK8hUMjJVmskgoMLSDzRZLJ4=
+=n8Qs
+-----END PGP SIGNATURE-----
Added: release/felix/org.apache.felix.http.wrappers-1.1.2-javadoc.jar.sha1
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.1.2-javadoc.jar.sha1 (added)
+++ release/felix/org.apache.felix.http.wrappers-1.1.2-javadoc.jar.sha1 Mon Oct
2 09:14:40 2023
@@ -0,0 +1 @@
+3573d2b2fef36cc91bca2bda5feb69533818cdf5
\ No newline at end of file
Added: release/felix/org.apache.felix.http.wrappers-1.1.2-javadoc.jar.sha512
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.1.2-javadoc.jar.sha512
(added)
+++ release/felix/org.apache.felix.http.wrappers-1.1.2-javadoc.jar.sha512 Mon
Oct 2 09:14:40 2023
@@ -0,0 +1 @@
+c5e2e2186d8ce316b610adc41c57e247cf904efda17fcd6bb127cc3513ffbd00bb44751726d36f27587314cbef42647dee4b04366b95411136d809e5372c5ace
org.apache.felix.http.wrappers-1.1.2-javadoc.jar
Added: release/felix/org.apache.felix.http.wrappers-1.1.2-source-release.tar.gz
==============================================================================
Binary file - no diff available.
Propchange:
release/felix/org.apache.felix.http.wrappers-1.1.2-source-release.tar.gz
------------------------------------------------------------------------------
svn:mime-type = application/x-gzip
Added:
release/felix/org.apache.felix.http.wrappers-1.1.2-source-release.tar.gz.asc
==============================================================================
---
release/felix/org.apache.felix.http.wrappers-1.1.2-source-release.tar.gz.asc
(added)
+++
release/felix/org.apache.felix.http.wrappers-1.1.2-source-release.tar.gz.asc
Mon Oct 2 09:14:40 2023
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmUWXuUACgkQP89Sn/Ly
+egZRdBAApUcUGuE58BBvxDTYckWjLZkeXTcDkREAwUlx5yW589Pylgqq302zve24
+3ake87c80DXQyIt+0VjtflY0ePD8EcTKMrNsD46PJQO9WK5aAq2FvhjoGGtKjl5W
+vn2OVVIGsvdOkTKmTuBHBhuQP477/dcGaSOpXFDN50npI/cbjtV4WmCDHKuIpmh7
+wayNESf7gGrKDWT2rFWoIbG1ciOAZPqgDc8LEHU6LIcQ1jbNBz3tAni+UZCZo1Ka
+klhuReoqWkL+8ReVICztoGxsmmvjAqY283CB/AeVPvj7tZLXlxM97axJeH2/IMcq
++8nFPaHcg88JcgGKMxM8O9WxHHhTQWSX9Rvs65Ew3cBvlLkZYUlkQW2p095aSG18
+3xVbnPJnWm9YfzkhRJ/GHlI3hTC9dkcZXnis0eMx5StV5DLxDCd1InwhmlfUIpZz
+IgREFt7cay5VVmh+TDha/qK7OQO+xUu9zXQxh7x4GOe1NogKiUZhivxEaOfIyUYs
+QAOkuhW2HDhLojP2gpZZZSSng/q5swSUSSdLzcHtaQOlaTn9ljpEknJ6UEAmc4l7
+bMrTKE8JxR9SmcOLSZg82MRTW17v8QSe0nqx6julH/l6tAhwe3tMosA8UPitG16F
+ravypQ333C7jn1CZ87Wb7Rjwdd9/GV1RGFj7zMmKtPjYg7yQlIM=
+=O8lb
+-----END PGP SIGNATURE-----
Added:
release/felix/org.apache.felix.http.wrappers-1.1.2-source-release.tar.gz.sha1
==============================================================================
---
release/felix/org.apache.felix.http.wrappers-1.1.2-source-release.tar.gz.sha1
(added)
+++
release/felix/org.apache.felix.http.wrappers-1.1.2-source-release.tar.gz.sha1
Mon Oct 2 09:14:40 2023
@@ -0,0 +1 @@
+c59a4018045d53513a741848f6c3303adae3e879
\ No newline at end of file
Added:
release/felix/org.apache.felix.http.wrappers-1.1.2-source-release.tar.gz.sha512
==============================================================================
---
release/felix/org.apache.felix.http.wrappers-1.1.2-source-release.tar.gz.sha512
(added)
+++
release/felix/org.apache.felix.http.wrappers-1.1.2-source-release.tar.gz.sha512
Mon Oct 2 09:14:40 2023
@@ -0,0 +1 @@
+7ae605a2f890a092b245552f5e07b69e34b3a37d1e1a378812838b9308a05b9fb427a76ec50d2de57c001b1d345d8fa0b79c0e22d975cf8f0de198dba353f851
org.apache.felix.http.wrappers-1.1.2-source-release.tar.gz
Added: release/felix/org.apache.felix.http.wrappers-1.1.2-source-release.zip
==============================================================================
Binary file - no diff available.
Propchange:
release/felix/org.apache.felix.http.wrappers-1.1.2-source-release.zip
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added: release/felix/org.apache.felix.http.wrappers-1.1.2-source-release.zip.asc
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.1.2-source-release.zip.asc
(added)
+++ release/felix/org.apache.felix.http.wrappers-1.1.2-source-release.zip.asc
Mon Oct 2 09:14:40 2023
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmUWXuQACgkQP89Sn/Ly
+ega9dQ//cZ1WA0c3H1v0+IaqZgc6ddueHt98/HOGkL3ZIC3bPTtD6IkoVPrQpL/E
+ht6MH78ABgvEJ/nTTsVQK0rvJtzFcw3+zWzQ8B4JZatXjJLmqrK7wCeffyg0TRQn
+tkdfF85qkDwChXSBBuju2pt29KI1UcFmY9jPibR5QbzHdp9S/HT1UWWo4dAKvs+6
+gT1MXHguvlUq61wye7EoRZkz5G3Zw5KhJGlcHtEMNVfIcBa9d53290FI4ys4+xwL
+kYMLwjw5vAJh5V5y6hOMqQDCZ9IAyujvcJxAUujtGY470P3LPy700qheSnl/w/Zm
+xk9GSvunNeeTvqepaNrbRcMpSeaoqyh9keZmNlHwblNaae6JJCg3y8b2Dqj6Y8b/
+76hvMg5g8y024QIbjxZbcI1heOyvW7pXHd0dhMKNfYLeamh2mAU4HS2m6nlZY8co
+ammOXeiOGplOJI0ue9LA4D5b/VsdkoyWHrpxgZb9t6airXH6KPRvwIXQb/HQ/0x/
+3hYZlRZDDeSh9wUD9NRVoI7SGrYGzOPDy82fqRv5bhA97OlkcmldsqmH4nI2AbKM
+rhYiaPZNjxo8hY8wv94h5F9emtoDOJJPgWX+Gkld8ek/jmShXGFT94MRzaYYEXrL
+Y3MuQuYe9M9NA3L13YO5TikXkY+4FGDCht2sGx/hmPHrJOYJb+w=
+=2JGT
+-----END PGP SIGNATURE-----
Added:
release/felix/org.apache.felix.http.wrappers-1.1.2-source-release.zip.sha1
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.1.2-source-release.zip.sha1
(added)
+++ release/felix/org.apache.felix.http.wrappers-1.1.2-source-release.zip.sha1
Mon Oct 2 09:14:40 2023
@@ -0,0 +1 @@
+d82a530f80851736228e97a8a434fe89e12cb386
\ No newline at end of file
Added:
release/felix/org.apache.felix.http.wrappers-1.1.2-source-release.zip.sha512
==============================================================================
---
release/felix/org.apache.felix.http.wrappers-1.1.2-source-release.zip.sha512
(added)
+++
release/felix/org.apache.felix.http.wrappers-1.1.2-source-release.zip.sha512
Mon Oct 2 09:14:40 2023
@@ -0,0 +1 @@
+19cf4d328dc846cb3a0b12a1bb8e8613632ba4460ef7dd3935b07de0ee339d04d81ce277eb023ae7928ba0758662e1e8755d4d54c46ecd5d8c9e752d48b6c1bd
org.apache.felix.http.wrappers-1.1.2-source-release.zip
Added: release/felix/org.apache.felix.http.wrappers-1.1.2-sources.jar
==============================================================================
Binary file - no diff available.
Propchange: release/felix/org.apache.felix.http.wrappers-1.1.2-sources.jar
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added: release/felix/org.apache.felix.http.wrappers-1.1.2-sources.jar.asc
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.1.2-sources.jar.asc (added)
+++ release/felix/org.apache.felix.http.wrappers-1.1.2-sources.jar.asc Mon Oct
2 09:14:40 2023
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmUWXuUACgkQP89Sn/Ly
+egZGCg//e/2kQKW0trjtCAJi8VPX0TIVPyZKcpKoi0YlrN+kRc8PpqTD4VmhQR3F
+h5Op7xHntacew/0wp3jcQPOp4Cjr+rlMjQC1BIDDo8iBL1Pq+P6+K+Os25y68LRA
+NRAj1WWP25/+ax7ZDXEhPSzjfUa0SQeVswbEMBX2/wivLY5I6YbvdaLhPc3u7c8W
+5PetTr1A48pRbla3/VPqXk67aKJHftdP/TR301hBHQOPFARWeAHMMABWT+WXjMI6
+pRAFnkpRhcbBw7OElkvmlFCg24unqZq/a5DgRzkAfXphAPn/qK/N1B9qYe3N/J5m
+eGGm0o9yaNxhBZmCPVEjSEzVDaPl4bCLVDSBob5+pGfg39BpRM+3YzO7mxySUXVw
+pn1fDKbAr0sA84rz6CIsW9aFNCVpP6pWwSjw8Pc22RG98/kGnmNF4RzMj7CVbZbm
+KymaBGkecKh0SZ9G5F2iImI3+QcWRU04OBOt+V/rITc2cRBA5mNxQbsZinNwg+/P
+ikqBNiWK8Z0dtx1M635FIdYN4RCkR50B304Pyp5TGnncME9T5kQf0bdPoqMAgRzq
+MIRGxMCwF3Ji2krRSjV03MTAKYWHyHGh+Um/QwJmoueO9/FHeF+RAYnpkiBgZEBB
+9KXKIlTTzshAnF0VX/X29znn2FXdu1uGpNHex7anut6rMU81RuM=
+=ilvU
+-----END PGP SIGNATURE-----
Added: release/felix/org.apache.felix.http.wrappers-1.1.2-sources.jar.sha1
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.1.2-sources.jar.sha1 (added)
+++ release/felix/org.apache.felix.http.wrappers-1.1.2-sources.jar.sha1 Mon Oct
2 09:14:40 2023
@@ -0,0 +1 @@
+2c808d4cfff4a1f7601f6851bd6037a39b68db5c
\ No newline at end of file
Added: release/felix/org.apache.felix.http.wrappers-1.1.2-sources.jar.sha512
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.1.2-sources.jar.sha512
(added)
+++ release/felix/org.apache.felix.http.wrappers-1.1.2-sources.jar.sha512 Mon
Oct 2 09:14:40 2023
@@ -0,0 +1 @@
+3b30b914257bc5d5192030f862b7ea0f570960b6e703fb02b749ff9e015538f5a4fd6bd631a43690c187659c01d5d4c2bdfaeb091b3880b5e92200374fe28230
org.apache.felix.http.wrappers-1.1.2-sources.jar
Added: release/felix/org.apache.felix.http.wrappers-1.1.2.jar
==============================================================================
Binary file - no diff available.
Propchange: release/felix/org.apache.felix.http.wrappers-1.1.2.jar
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added: release/felix/org.apache.felix.http.wrappers-1.1.2.jar.asc
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.1.2.jar.asc (added)
+++ release/felix/org.apache.felix.http.wrappers-1.1.2.jar.asc Mon Oct 2
09:14:40 2023
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmUWXuQACgkQP89Sn/Ly
+egZSRBAAqjX2or430vaUHwAC6Y8tIm62nEpoSnAczu1SnAQDn6WhT3X88Azky/Bn
+f2J8ck1WzwUaSMXeD2wdeIg0+WnPRDoWW82FDsMFuZhLaoPffmExSC5xX1elmIa9
+4jlbEUOw3LDoFs20pvCZRYrtt0leWmAQitfQdSe+72jfSZChJfva3OHAjbteJc4/
+6t2YNprxbnHqqg03cRfdTyHei1NDnE7uV5x71C/jP1pZZMrjY00J14Xf9hzzsLHI
+xchYLNxB8rUXhl41vb8fHm+OvmcvoEpQ3XcoetnlA9q5cECp31dvugyx6gPPrn3B
+Pj8x/E3ep+tEisv361LPpz/UcpkORlAdUZIkSRcn+Aa8caPatIWFlOILLEa+tkQO
+NUzp0y/I+Hpq92I+v1H4vP6uwdQomZGv1LilrExFO///FiBh0mTT7JFO38ozgs5O
+OxLhYODNvsObMAKy0PomYcjDja2AvXxXAUyMbiKGqo3KDLEK094Tib8Op/XkrReN
+WIk2R8LOjWFzrYRHYgu2kHKqlV1gRT7D0ISkTFNCahLnfLfN61YjqBo/MEVQ442e
+VU8zaSLtCflZydihDi/eqxTodeZuHRu0/RkvpzSovNRHSbcrzhnZE3fJp0ITcUdS
+DEpZ9dGQ/2Q8L/htN/Tvu1dgBAdZ0btYRGiO7ZkiNkrvLbEp83w=
+=+tnu
+-----END PGP SIGNATURE-----
Added: release/felix/org.apache.felix.http.wrappers-1.1.2.jar.sha1
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.1.2.jar.sha1 (added)
+++ release/felix/org.apache.felix.http.wrappers-1.1.2.jar.sha1 Mon Oct 2
09:14:40 2023
@@ -0,0 +1 @@
+20d15ae4f611286011f70f326736171cd0e32a92
\ No newline at end of file
Added: release/felix/org.apache.felix.http.wrappers-1.1.2.jar.sha512
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.1.2.jar.sha512 (added)
+++ release/felix/org.apache.felix.http.wrappers-1.1.2.jar.sha512 Mon Oct 2
09:14:40 2023
@@ -0,0 +1 @@
+63684f96fc6ea2cc52f21f7203a41ca6e8f7f1f65ef7a96cd34c85068fb9e3cf6a418ad6e2bc763a25d67af5f1617f5379ac8b9fb3d98e58619d6f476a36ccd9
org.apache.felix.http.wrappers-1.1.2.jar
Added: release/felix/org.apache.felix.http.wrappers-1.1.2.pom
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.1.2.pom (added)
+++ release/felix/org.apache.felix.http.wrappers-1.1.2.pom Mon Oct 2 09:14:40
2023
@@ -0,0 +1,83 @@
+<!--
+ 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>org.apache.felix.http.parent</artifactId>
+ <version>13</version>
+ <relativePath>../parent/pom.xml</relativePath>
+ </parent>
+
+ <name>Apache Felix Http Wrappers</name>
+ <artifactId>org.apache.felix.http.wrappers</artifactId>
+ <version>1.1.2</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.2</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>
+ </plugin>
+ </plugins>
+ </build>
+
+ <dependencies>
+ <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.5.0</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+</project>
Added: release/felix/org.apache.felix.http.wrappers-1.1.2.pom.asc
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.1.2.pom.asc (added)
+++ release/felix/org.apache.felix.http.wrappers-1.1.2.pom.asc Mon Oct 2
09:14:40 2023
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmUWXuQACgkQP89Sn/Ly
+egZ6tw/+IsBkUcTrxIinu5WXhwFgUcoTcGBdMUJpOwTfT+q4HBIdiIstYfWq/kwp
+MolbDNNKyR+VrhIYcMJTRQf5sRPSlvXys0ZVNPxNgAySHySj4yWa0IrMbk2Da+nd
+YgbWprSeJmT/5cbt3FoZP9ZlrgEzParPILkb0xouX7kJs7XIyOcF95o9K0YUEL00
+2G7k36uRWuHkeBawRly8hr0Y3nWfkUkHbUS36FpRtAKjROWIayxWAfyfc3xbKqjq
+ZPaWwbsDUTJ+4qys2fRtpDlYpwFE/RxowKMOkiMIk85n8olbZG8TUSfCMhWK328X
+3ELxXAwY2LOwr2HsAE9Z5deJ6reI+hQcTHHB5MjpwMyYK86+GNAYGhzLhQvW8ljw
+CykBx4fojRJxlqbNuShUC9xAO73PKLkSSfjprzbR39alQupBZpMHwfDEv4zWkNuL
+LVsu6oOVoClOaGzSRr8bQkK5MRIkzuTy7gga7FKYjdmc7yLEewfTzgSVh7/RwT9C
+FkkSL4+3PX6Sl1pmuJnrPnE6fM0uUZFsL7WqpsUU7cPK0XPM139NKj5w22EQFgiN
+cvcJ4ZwFQF4tDWL4X9OdoZepZxGuyrQEJ7eWQ9+ayh5/V7KwvuTBlI1/MGea9Jpq
+J9xHNSG+7L/ZGMTOetWmFE33BXBP5QVZK+CezExPelmRChEAbi8=
+=dTJ3
+-----END PGP SIGNATURE-----
Added: release/felix/org.apache.felix.http.wrappers-1.1.2.pom.sha1
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.1.2.pom.sha1 (added)
+++ release/felix/org.apache.felix.http.wrappers-1.1.2.pom.sha1 Mon Oct 2
09:14:40 2023
@@ -0,0 +1 @@
+a8ae42e18b5911fba2940b1a181168c256638f63
\ No newline at end of file
Added: release/felix/org.apache.felix.http.wrappers-1.1.2.pom.sha512
==============================================================================
--- release/felix/org.apache.felix.http.wrappers-1.1.2.pom.sha512 (added)
+++ release/felix/org.apache.felix.http.wrappers-1.1.2.pom.sha512 Mon Oct 2
09:14:40 2023
@@ -0,0 +1 @@
+863cbff625f332443a757d784a6530758a70086f56f426fa87bb81c6e61d832371d1c9227b317ddb9038271fa5a8d1a9fa8b440725a154fe9b7c60eeec213d44
org.apache.felix.http.wrappers-1.1.2.pom