Added: release/felix/org.apache.felix.http.jetty-4.2.0.pom
==============================================================================
--- release/felix/org.apache.felix.http.jetty-4.2.0.pom (added)
+++ release/felix/org.apache.felix.http.jetty-4.2.0.pom Sun Feb 20 12:42:14 2022
@@ -0,0 +1,423 @@
+<!--
+    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 R7 OSGi Http Service and the 
R7 OSGi Http Whiteboard Specification</description>
+
+    <artifactId>org.apache.felix.http.jetty</artifactId>
+    <version>4.2.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.jetty-4.2.0</tag>
+  </scm>
+    
+    <properties>
+        <felix.java.version>8</felix.java.version>
+       <jetty.version>9.4.45.v20220203</jetty.version>
+    </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.3</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.eclipse.jetty,
+                            !org.eclipse.jetty.util.log.jmx,
+                            !org.eclipse.jetty.version,
+                            org.eclipse.jetty.*,
+                            org.apache.felix.http.jetty
+                        </Export-Package>
+                        <Private-Package>
+                            org.apache.felix.http.base.*,
+                            org.apache.felix.http.jetty.*,
+                            org.eclipse.jetty,
+                            org.eclipse.jetty.security.authentication,
+                            org.eclipse.jetty.util.log.jmx,
+                            org.eclipse.jetty.version
+                        </Private-Package>
+                        <Conditional-Package>
+                            org.apache.commons.*
+                        </Conditional-Package>
+                        <Import-Package>
+                            sun.misc;resolution:=optional,
+                            javax.imageio;resolution:=optional,
+                            javax.sql;resolution:=optional,
+                            org.slf4j.*;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)",
+                            *
+                        </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.service;objectClass:List&lt;String&gt;="org.osgi.service.http.runtime.HttpServiceRuntime";
+                            
uses:="org.osgi.service.http.runtime,org.osgi.service.http.runtime.dto",
+                            
osgi.service;objectClass:List&lt;String&gt;="org.osgi.service.http.HttpService";
+                            uses:="org.osgi.service.http",
+                            
osgi.serviceloader;osgi.serviceloader="org.eclipse.jetty.http.HttpFieldPreEncoder"
+                        </Provide-Capability>
+                        <Require-Capability>
+                            
osgi.contract;filter:="(&amp;(osgi.contract=JavaServlet)(version=4.0))",
+                            
osgi.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>
+                    <!-- Skip Baselining due to Jetty API -->
+                    <skip>true</skip>
+                </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.apache.felix.http.jetty
+                                </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)",
+                                    
org.eclipse.jetty.webapp;resolution:=optional,
+                                    *
+                                </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.service;objectClass:List&lt;String&gt;="org.osgi.service.http.runtime.HttpServiceRuntime";
+                                    
uses:="org.osgi.service.http.runtime,org.osgi.service.http.runtime.dto",
+                                    
osgi.service;objectClass:List&lt;String&gt;="org.osgi.service.http.HttpService";
+                                    uses:="org.osgi.service.http"
+                                </Provide-Capability>
+                                <!-- We need to override this from the base 
configuration to exclude the ServiceLoader capabilities -->
+                                <Require-Capability>
+                                    
osgi.contract;filter:="(&amp;(osgi.contract=JavaServlet)(version=4.0))"
+                                </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-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</groupId>
+            <artifactId>jetty-webapp</artifactId>
+            <version>${jetty.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.eclipse.jetty.websocket</groupId>
+            <artifactId>websocket-servlet</artifactId>
+            <version>${jetty.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.eclipse.jetty.websocket</groupId>
+            <artifactId>websocket-server</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.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>4.2.0</version>
+        </dependency>
+        <dependency>
+            <groupId>commons-fileupload</groupId>
+            <artifactId>commons-fileupload</artifactId>
+            <version>1.4</version>
+        </dependency>
+        <dependency>
+            <groupId>commons-io</groupId>
+            <artifactId>commons-io</artifactId>
+            <version>2.8.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>

Propchange: release/felix/org.apache.felix.http.jetty-4.2.0.pom
------------------------------------------------------------------------------
    svn:executable = *

Added: release/felix/org.apache.felix.http.jetty-4.2.0.pom.asc
==============================================================================
--- release/felix/org.apache.felix.http.jetty-4.2.0.pom.asc (added)
+++ release/felix/org.apache.felix.http.jetty-4.2.0.pom.asc Sun Feb 20 12:42:14 
2022
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmIONbIACgkQP89Sn/Ly
+egbCBA/+JQsk+tKYlXjJcaOlqzcK2UbAMkXARoagFMoZWolu4A/R88XsGL2Pgv8X
+LYMm/Ka/dHi1Ue+LnSt2mPfcqmPp1mue6B//oCbilblVknBwXFQ0JAy6Yp0AcevQ
+JSdWYd9M3nZ4p1x9MGUwR8c6Hq7OxwrwnppP1Nvx2zaP5y75daQBe1u9nGX/0l35
+votCx9V1SgU6/SJlRQSB89bevqiUFf+wXiFEJWewMC23tD/+AWeD6NdicZxPIXv+
+8KD9kLeWAaxs1G7jbNX6K3tg457h5+F1uVqYKZHUwcer+zAjUMBjjgFncgUWcMBu
+LiS7e3d8uH6IbakvWpotcGSlPYAPK3qO8sELHU7a5J8SBp+nrnEq2mX6XqkFCGkg
+kMt2K88pD2zXFmrGMFLmna1WeBi4ZWsUE6PrGzrMmrb3ceQqYqATM8Ctz1/dVnAs
+FIZhdtSATsr1w3GSWYPyuXL3QAaqcpGjY4dEW7Uwc02a4PIw1y3Vest7JlpuTWzY
+oIeO3AzHiqxQomdN7FroZ8mkj+qqSBvpbGs3gaVD2hgRH2c+Mbtnl/O2ePPyy1Fo
+letTTupf1MknTgr2AwfFCN6/xdIQ99sMAdBw63iU2iuR14vD4l1mIbqnD7ip/jLc
+kCckhsEz4lj9EwlDEReUZwEdOhhBOMsGxsyOm9bHlFGpFFO+c5k=
+=QBBd
+-----END PGP SIGNATURE-----

Propchange: release/felix/org.apache.felix.http.jetty-4.2.0.pom.asc
------------------------------------------------------------------------------
    svn:executable = *

Added: release/felix/org.apache.felix.http.jetty-4.2.0.pom.sha1
==============================================================================
--- release/felix/org.apache.felix.http.jetty-4.2.0.pom.sha1 (added)
+++ release/felix/org.apache.felix.http.jetty-4.2.0.pom.sha1 Sun Feb 20 
12:42:14 2022
@@ -0,0 +1 @@
+56111abc44c2168378e4c1a8be59361735f431c5
\ No newline at end of file

Propchange: release/felix/org.apache.felix.http.jetty-4.2.0.pom.sha1
------------------------------------------------------------------------------
    svn:executable = *

Added: release/felix/org.apache.felix.http.jetty-4.2.0.pom.sha512
==============================================================================
--- release/felix/org.apache.felix.http.jetty-4.2.0.pom.sha512 (added)
+++ release/felix/org.apache.felix.http.jetty-4.2.0.pom.sha512 Sun Feb 20 
12:42:14 2022
@@ -0,0 +1 @@
+c451396cb17283908f1622f517e36ba50ab318510e2f148a6b43a795d02d097d5d43a8f86cd6c9ba2c485a371f775c3811c28c8756b246914f824cc11ecd6db7
  org.apache.felix.http.jetty-4.2.0.pom

Propchange: release/felix/org.apache.felix.http.jetty-4.2.0.pom.sha512
------------------------------------------------------------------------------
    svn:executable = *

Added: 
release/felix/org.apache.felix.http.servlet-api-1.2.0-source-release.tar.gz
==============================================================================
Binary file - no diff available.

Propchange: 
release/felix/org.apache.felix.http.servlet-api-1.2.0-source-release.tar.gz
------------------------------------------------------------------------------
    svn:executable = *

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

Added: 
release/felix/org.apache.felix.http.servlet-api-1.2.0-source-release.tar.gz.asc
==============================================================================
--- 
release/felix/org.apache.felix.http.servlet-api-1.2.0-source-release.tar.gz.asc 
(added)
+++ 
release/felix/org.apache.felix.http.servlet-api-1.2.0-source-release.tar.gz.asc 
Sun Feb 20 12:42:14 2022
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmIONDgACgkQP89Sn/Ly
+egZBGA/+NRVmX6ao/CYwgnofqHXkqTErsRoQ/71x0q7e0f15bs0z9c1Kb/lrZmfS
+oFkNiUnju/C/w6IYrYirXBo49t5VF/SdiQ/vs1bo45Gy4QZL+qbusjwF374iKGXm
+ehpfuqrk3OcAiZsNihxNtOSUdLPG7Yadp84N4lpBwxlOebrysY0v7nCPV4U8KV1y
+6o8okPcpC8yOPaPPTL2AcRHgf6K3gDbbUnZT2uGpyxDweGQx04TBDa3qZPfD4ZHB
+ocsE/+SCvYeow9nzQbx/JPdKuy5ufTwKNWAvqh1ZoDIUh84HwBBw57l9m6VupgM+
+ISQHmtgLdlRkOr22Wf/rMuvcA/qy/+eLHw+QHEquc4krmVxYVs3kI0MTfIIf7KCV
+48vEITDqUAGGXGfiwHlSpmeU++QSKyz3koEu1AHelrZfbY74Iq9P9pSM8nWhJZfN
+jaYX9JnfqpjSUoZcZrCkaz5u5AtCTNFTsiUlISzWi+EWJCHWHRAi+zgUy86L6AUc
+i2U27CD8WHHGa0qzd2kF23ugMu2lbqFkWzlpMEKdrzG1nTv4rUVqnZgKEuQpCTcZ
+MWcB8kldtF3gnh5RX4hVo3C04+8NCB08vN4odv9Ld7Nvfx4YE/qyjH0aYh+DXA/w
+kXiJtU1i/Dq0sO6fbetRob1AUw+c4+6jD8Q7uLoJBb18k2Iux5I=
+=mEF9
+-----END PGP SIGNATURE-----

Propchange: 
release/felix/org.apache.felix.http.servlet-api-1.2.0-source-release.tar.gz.asc
------------------------------------------------------------------------------
    svn:executable = *

Added: 
release/felix/org.apache.felix.http.servlet-api-1.2.0-source-release.tar.gz.sha1
==============================================================================
--- 
release/felix/org.apache.felix.http.servlet-api-1.2.0-source-release.tar.gz.sha1
 (added)
+++ 
release/felix/org.apache.felix.http.servlet-api-1.2.0-source-release.tar.gz.sha1
 Sun Feb 20 12:42:14 2022
@@ -0,0 +1 @@
+6903792d420fcf1153d7c09fae7201a5ac9b0f98
\ No newline at end of file

Propchange: 
release/felix/org.apache.felix.http.servlet-api-1.2.0-source-release.tar.gz.sha1
------------------------------------------------------------------------------
    svn:executable = *

Added: 
release/felix/org.apache.felix.http.servlet-api-1.2.0-source-release.tar.gz.sha512
==============================================================================
--- 
release/felix/org.apache.felix.http.servlet-api-1.2.0-source-release.tar.gz.sha512
 (added)
+++ 
release/felix/org.apache.felix.http.servlet-api-1.2.0-source-release.tar.gz.sha512
 Sun Feb 20 12:42:14 2022
@@ -0,0 +1 @@
+c3c96b576d4a03e8ad6c1f9f9a49e8053cdfb937656df7feaa1d63758d940883c2009da78a0b8020df57ba3c91ffad7f3093fb4b8647ea7db90a8f41be9df6c1
  org.apache.felix.http.servlet-api-1.2.0-source-release.tar.gz

Propchange: 
release/felix/org.apache.felix.http.servlet-api-1.2.0-source-release.tar.gz.sha512
------------------------------------------------------------------------------
    svn:executable = *

Added: release/felix/org.apache.felix.http.servlet-api-1.2.0-source-release.zip
==============================================================================
Binary file - no diff available.

Propchange: 
release/felix/org.apache.felix.http.servlet-api-1.2.0-source-release.zip
------------------------------------------------------------------------------
    svn:executable = *

Propchange: 
release/felix/org.apache.felix.http.servlet-api-1.2.0-source-release.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: 
release/felix/org.apache.felix.http.servlet-api-1.2.0-source-release.zip.asc
==============================================================================
--- 
release/felix/org.apache.felix.http.servlet-api-1.2.0-source-release.zip.asc 
(added)
+++ 
release/felix/org.apache.felix.http.servlet-api-1.2.0-source-release.zip.asc 
Sun Feb 20 12:42:14 2022
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmIONDgACgkQP89Sn/Ly
+egYroQ//bp/4xLj4KYFSowsHskQhIdlDw9E+TAOwkRb7eZrXi1Wzjh4/mmBpKt49
+MAjG2RDZn2AOU60cxYu5GwfFIyh9oZvG86AufkRZR6/xgh5Eew4j68OHBf3guXrv
+QzSew09f+VM8GXBDlbHQbWcSQVr5x94XSyUvdP+hu/g6xxnYfrp+uRtSJnfjCVVM
+4MUWp1Aq2h0FDNWgk1ZRlIQXw6Ikb9AonMNdyzowXQ3iuNirdkL7PHvcIolEBSZL
+wkHtO2FQhSiBbjqZ1LjkyVRxNaSYMqt0wVISVwYnQHH9DC3nJXXZdPlXGM2YTR6F
+bZYokUG7QUeuTLsE/qYZhVX8oeflG9LwOlDTQkhNoLFOPezLh6DIpYGNaC9Nbmef
+U9YhNfw2wnTIdRfut9LwCP1vDrrnVAwei1YBB4E/orzVLvA2RQjAWA/OkIqZDwR/
+pkYL2Vmme0MeYdLwLuwO2EqxA5mdFVkjF0Fx6od2G5Jbd/n06HIof2LHsHVEASa+
+TuSEDNGI3ZQFAQychdLYaUsJii+7eiKYr5+cJaUYXQHAP4uZndn6y3ppgkMMl+D2
+uzTRwCUaey1bVHnHiF24RmY4salYmccY0pJjXGNYw2oKMTWmIOW6vvGpsDsGcsPH
+FO6djxsJn6glNI4dVR3r9LZE6jscEMfnypbMz1Zk0fM9HM+J8oQ=
+=e/wF
+-----END PGP SIGNATURE-----

Propchange: 
release/felix/org.apache.felix.http.servlet-api-1.2.0-source-release.zip.asc
------------------------------------------------------------------------------
    svn:executable = *

Added: 
release/felix/org.apache.felix.http.servlet-api-1.2.0-source-release.zip.sha1
==============================================================================
--- 
release/felix/org.apache.felix.http.servlet-api-1.2.0-source-release.zip.sha1 
(added)
+++ 
release/felix/org.apache.felix.http.servlet-api-1.2.0-source-release.zip.sha1 
Sun Feb 20 12:42:14 2022
@@ -0,0 +1 @@
+178db7bc6670b0f9c151af44edc93b4229138755
\ No newline at end of file

Propchange: 
release/felix/org.apache.felix.http.servlet-api-1.2.0-source-release.zip.sha1
------------------------------------------------------------------------------
    svn:executable = *

Added: 
release/felix/org.apache.felix.http.servlet-api-1.2.0-source-release.zip.sha512
==============================================================================
--- 
release/felix/org.apache.felix.http.servlet-api-1.2.0-source-release.zip.sha512 
(added)
+++ 
release/felix/org.apache.felix.http.servlet-api-1.2.0-source-release.zip.sha512 
Sun Feb 20 12:42:14 2022
@@ -0,0 +1 @@
+f2cfd76b2c5087047408fe8580fb2f3bb09c749d2ccd3e6ba5f0400941572bd8481abc81a2b5c2fbba0a34447f1beda355a2821761261471ca2274134ef6f693
  org.apache.felix.http.servlet-api-1.2.0-source-release.zip

Propchange: 
release/felix/org.apache.felix.http.servlet-api-1.2.0-source-release.zip.sha512
------------------------------------------------------------------------------
    svn:executable = *

Added: release/felix/org.apache.felix.http.servlet-api-1.2.0-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: release/felix/org.apache.felix.http.servlet-api-1.2.0-sources.jar
------------------------------------------------------------------------------
    svn:executable = *

Propchange: release/felix/org.apache.felix.http.servlet-api-1.2.0-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/felix/org.apache.felix.http.servlet-api-1.2.0-sources.jar.asc
==============================================================================
--- release/felix/org.apache.felix.http.servlet-api-1.2.0-sources.jar.asc 
(added)
+++ release/felix/org.apache.felix.http.servlet-api-1.2.0-sources.jar.asc Sun 
Feb 20 12:42:14 2022
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmIONDgACgkQP89Sn/Ly
+egZpoQ//caLD7fBSkDqqZ0NA2LaScntbDGWtTbMZBDId8G9YG3FXQzxNtbRJYFjh
+i8n8X9OFvnf8uGhj+7WXQzQftBG+En5H+pKEk4cypgQyb8JyKDAWf4FenRbLl47R
+84ckTmLjySCrf5ehtHDGQbkSxrc1Ga46mhdxwvGNT3zpdwRLjTqvMNRIvq/DIbUq
+MPJngog1+5XvM5BFDjRf7qQvWdS5AnoYO/0u0G1jOhUxu1/O7+mkL4kbno5YAtq9
+1bygcnF9G7y/z0MMFOruc8Nk7jh3udq+H6Xw0OWY+hJMkhvp8VGQrKAOSgYy1Uld
+5AKxP8fYGCZvrjaI9T102HFzYESoSB38Zsj4Zsb7ZLvCkcWg0hq/yCiD+vgQ2eD6
+XWDDKQHZAtBFmG4ncpMU2hji0wDr8BenSdshrU9ghoLYFQ1aAs2WB3gPJvfXpL/L
+Sv+NmME05eKmLUGOQFx/5r90wmZFxMCvWYR+VGQobU3YnfjC58C/Y+94v86qVN8u
++DAdnv6hdHaMD2xVEqrFlHafnSf6e7HJiNj8RgA79IH9Vz6YsN29vjFHGDR4vlat
+NF3e14MBHpMa/Mqn60vzMbryn5N3hDFWqTaTZ9rP/sUz3L3paqtwibnMdcGUIvF4
+0R2DVXJdp9XqOCKcUlD7hGM9+Ckrdvkf+yIbGZI63B4p7q60nus=
+=DPqb
+-----END PGP SIGNATURE-----

Propchange: 
release/felix/org.apache.felix.http.servlet-api-1.2.0-sources.jar.asc
------------------------------------------------------------------------------
    svn:executable = *

Added: release/felix/org.apache.felix.http.servlet-api-1.2.0-sources.jar.sha1
==============================================================================
--- release/felix/org.apache.felix.http.servlet-api-1.2.0-sources.jar.sha1 
(added)
+++ release/felix/org.apache.felix.http.servlet-api-1.2.0-sources.jar.sha1 Sun 
Feb 20 12:42:14 2022
@@ -0,0 +1 @@
+4d6b211bef614ec233bd26e06870267633310905
\ No newline at end of file

Propchange: 
release/felix/org.apache.felix.http.servlet-api-1.2.0-sources.jar.sha1
------------------------------------------------------------------------------
    svn:executable = *

Added: release/felix/org.apache.felix.http.servlet-api-1.2.0-sources.jar.sha512
==============================================================================
--- release/felix/org.apache.felix.http.servlet-api-1.2.0-sources.jar.sha512 
(added)
+++ release/felix/org.apache.felix.http.servlet-api-1.2.0-sources.jar.sha512 
Sun Feb 20 12:42:14 2022
@@ -0,0 +1 @@
+053be8b36d1c011b6433fa5e28fefbd52c78c36c51cdc803f26150d25ca5f220117942067c944a301d23b1867863ec6d3e80972a948834a29b40ed0073d1ec30
  org.apache.felix.http.servlet-api-1.2.0-sources.jar

Propchange: 
release/felix/org.apache.felix.http.servlet-api-1.2.0-sources.jar.sha512
------------------------------------------------------------------------------
    svn:executable = *

Added: release/felix/org.apache.felix.http.servlet-api-1.2.0.jar
==============================================================================
Binary file - no diff available.

Propchange: release/felix/org.apache.felix.http.servlet-api-1.2.0.jar
------------------------------------------------------------------------------
    svn:executable = *

Propchange: release/felix/org.apache.felix.http.servlet-api-1.2.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/felix/org.apache.felix.http.servlet-api-1.2.0.jar.asc
==============================================================================
--- release/felix/org.apache.felix.http.servlet-api-1.2.0.jar.asc (added)
+++ release/felix/org.apache.felix.http.servlet-api-1.2.0.jar.asc Sun Feb 20 
12:42:14 2022
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmIONDcACgkQP89Sn/Ly
+egZwgQ/8CTxI1zOZ2LcS1zbmda1FkZaJXCm9BhEEd8ONBnEeBnQB5JrPuBQ1FXqa
+mISQfqcyS4PfkaDscAqx/RctYCbife6phNYPMcHrwRpIuhSSaQHGaDWw0napf5Dz
+4MEeSEYL/Trsv667khbprAF7+xDyDN8/zp9DO6MUWx+zUS4XfKJk6rUJztAa6GPj
+zQBY7e0lHSsyH/0eAbzwbwqhKdXjIcQloswoKhf79kIwyWZliLfi8iAdrBSrKIuG
+EOcXTpGolPCh+DmuMu6+29wjqKTOldVibYZ+Z8hLRLL/VUa/CaVJQ5PbS94UVbNz
+y6MrTZ2BWDVzY1U80tzhRsOPIEa90MP5Sw5UYZOYkxNzFhrpoLReU+U/GZcFAyZ1
+pZoWCpPa8NHzs9rQ/he7okgy9t8sqlJsXwGtDsW8XgUOxJAgL9MqJshVV2wEFiR6
+Pr3kPnMs57eV0+Zo38CsjIiRiKzHGdleU/oYAB5+bB28rd+CMXwXeh/aA42VS1yl
+SwgWc323ThjYu3HCcKqeTp6fLA97QPbusKSUMWNAWfASpcNuwvxMvBB82XNEwm6h
+J4jA8+XT14ooySed106hIi/SgP0jIVY8SgLKhtW44OLR+PVDqfBMWMrYryl4/g7C
+eiveO3DnPZEqouFRlB3Ud6PsjIutwSw33zaYed5xb1FA0aCWoAY=
+=jfta
+-----END PGP SIGNATURE-----

Propchange: release/felix/org.apache.felix.http.servlet-api-1.2.0.jar.asc
------------------------------------------------------------------------------
    svn:executable = *

Added: release/felix/org.apache.felix.http.servlet-api-1.2.0.jar.sha1
==============================================================================
--- release/felix/org.apache.felix.http.servlet-api-1.2.0.jar.sha1 (added)
+++ release/felix/org.apache.felix.http.servlet-api-1.2.0.jar.sha1 Sun Feb 20 
12:42:14 2022
@@ -0,0 +1 @@
+46d39af40405ef10ade3c4d8cee76997ff6295ba
\ No newline at end of file

Propchange: release/felix/org.apache.felix.http.servlet-api-1.2.0.jar.sha1
------------------------------------------------------------------------------
    svn:executable = *

Added: release/felix/org.apache.felix.http.servlet-api-1.2.0.jar.sha512
==============================================================================
--- release/felix/org.apache.felix.http.servlet-api-1.2.0.jar.sha512 (added)
+++ release/felix/org.apache.felix.http.servlet-api-1.2.0.jar.sha512 Sun Feb 20 
12:42:14 2022
@@ -0,0 +1 @@
+ca9f99d5a08ffaad6a3fd0aaaccf6284295b19328c2621fba2daa4ecb0f516d12123bd714f877d3bebb4e59d2a0a9c809498e7cae6dd1845e6b504726f3cd732
  org.apache.felix.http.servlet-api-1.2.0.jar

Propchange: release/felix/org.apache.felix.http.servlet-api-1.2.0.jar.sha512
------------------------------------------------------------------------------
    svn:executable = *

Added: release/felix/org.apache.felix.http.servlet-api-1.2.0.pom
==============================================================================
--- release/felix/org.apache.felix.http.servlet-api-1.2.0.pom (added)
+++ release/felix/org.apache.felix.http.servlet-api-1.2.0.pom Sun Feb 20 
12:42:14 2022
@@ -0,0 +1,87 @@
+<!-- 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>1.2.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-1.2.0</tag>
+  </scm>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-bundle-plugin</artifactId>
+                <version>5.1.3</version>
+                <extensions>true</extensions>
+                <configuration>
+                    <instructions>
+                        <Export-Package>
+                            javax.servlet;
+                            javax.servlet.annotation;
+                            javax.servlet.descriptor;
+                            javax.servlet.http;
+                                version=2.6,
+                            javax.servlet;
+                            javax.servlet.annotation;
+                            javax.servlet.descriptor;
+                            javax.servlet.http;
+                                version=3.0,
+                            javax.servlet;
+                            javax.servlet.annotation;
+                            javax.servlet.descriptor;
+                            javax.servlet.http;
+                                version=3.1,
+                            javax.servlet;
+                            javax.servlet.annotation;
+                            javax.servlet.descriptor;
+                            javax.servlet.http;
+                                version=4.0
+                        </Export-Package>
+                        <Import-Package>!*</Import-Package>
+                        <Provide-Capability>
+                            
osgi.contract;osgi.contract="JavaServlet";version:List&lt;Version&gt;="2.6,3.0,3.1,4.0";
+                            
uses:="javax.servlet,javax.servlet.http,javax.servlet.descriptor,javax.servlet.annotation"
+                        </Provide-Capability>
+                       
<Embed-Dependency>tomcat-servlet-api;inline=true</Embed-Dependency>
+                    </instructions>
+                    <!-- Skip baselining -->
+                    <skip>true</skip>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.tomcat</groupId>
+            <artifactId>tomcat-servlet-api</artifactId>
+            <version>9.0.56</version>
+        </dependency>
+    </dependencies>
+
+</project>

Propchange: release/felix/org.apache.felix.http.servlet-api-1.2.0.pom
------------------------------------------------------------------------------
    svn:executable = *

Added: release/felix/org.apache.felix.http.servlet-api-1.2.0.pom.asc
==============================================================================
--- release/felix/org.apache.felix.http.servlet-api-1.2.0.pom.asc (added)
+++ release/felix/org.apache.felix.http.servlet-api-1.2.0.pom.asc Sun Feb 20 
12:42:14 2022
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmIONDcACgkQP89Sn/Ly
+egYneQ/+IFznZSp0O/MVOusR8P4HoRnZRR3HrmE0EAfv4+Zy4/kX/6t86UinLxiV
+AuuL5JPf07eV+7uagldMQt/V6V5s1E15OXgWwwB9YwHWJdTvhaG0DxPeHjHkSrrH
+L681xfQ2jLKVLBpNt6KeMTiyPnC0hDYD+5zyOBLqDfpi+zGhCXo6YmTr/NBa+nxX
+C0O441Nf6h0w8rEahYpEVYHwcHSqpS/LAh8vw1K6+T72Vi+bmPu6wHsQs4cD3XjJ
+78+VkKjZx/zFrzzC6dwEG+MuxFVt6PD0qkDJyRW66IiXKueZTOgToofHk0We88HB
+zl42kNL77yAGLOyPYqlier37nsbywifUFL0q37n6Z5V7wohIOCIdZi9Y3Qav1MTj
+qyZbwNlaG4YZM9mFk5BXpBjlwwW5T5M8mtzCBRfT7MSkr1ei7/cFu5hECrMrGsuu
+VSF/Y0Ss80e2Ml7qowHVOPlqfsrk0cWlojSy+DChjEVWbFGFtg6jcmPsELKZN1oF
+/vdycVZBuL/UT3b15OJIUYLnw4Lb6F9pxLrxB3mCW+iDu3hUn9vz7Alc8bGZjF4T
+tNuxTZtYDmpNcRNMHagHhT24j/QPlnuiimfRHEfHXueFem2dX7wM28ssCRUVRUzQ
+ud0PJw5vHKevE0tO7grk/XsE0sLiSBNm8HjjpKlGn826jt3NS8I=
+=Jimx
+-----END PGP SIGNATURE-----

Propchange: release/felix/org.apache.felix.http.servlet-api-1.2.0.pom.asc
------------------------------------------------------------------------------
    svn:executable = *

Added: release/felix/org.apache.felix.http.servlet-api-1.2.0.pom.sha1
==============================================================================
--- release/felix/org.apache.felix.http.servlet-api-1.2.0.pom.sha1 (added)
+++ release/felix/org.apache.felix.http.servlet-api-1.2.0.pom.sha1 Sun Feb 20 
12:42:14 2022
@@ -0,0 +1 @@
+67737c976592491517c923927b9ac3a10901b5c5
\ No newline at end of file

Propchange: release/felix/org.apache.felix.http.servlet-api-1.2.0.pom.sha1
------------------------------------------------------------------------------
    svn:executable = *

Added: release/felix/org.apache.felix.http.servlet-api-1.2.0.pom.sha512
==============================================================================
--- release/felix/org.apache.felix.http.servlet-api-1.2.0.pom.sha512 (added)
+++ release/felix/org.apache.felix.http.servlet-api-1.2.0.pom.sha512 Sun Feb 20 
12:42:14 2022
@@ -0,0 +1 @@
+c97e33fb0f2bf606b80c063d25e4cd1956084dee654dcb91e19103a6812f5258ee3e589956d8ab79e82f16b6e4cc6062bbdf6990634995edd8cfd950eb0ea7e6
  org.apache.felix.http.servlet-api-1.2.0.pom

Propchange: release/felix/org.apache.felix.http.servlet-api-1.2.0.pom.sha512
------------------------------------------------------------------------------
    svn:executable = *


Reply via email to