You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by cz...@apache.org on 2023/02/24 11:59:30 UTC

svn commit: r60317 [2/2] - /release/felix/

Added: release/felix/org.apache.felix.http.jetty-5.0.4.pom
==============================================================================
--- release/felix/org.apache.felix.http.jetty-5.0.4.pom (added)
+++ release/felix/org.apache.felix.http.jetty-5.0.4.pom Fri Feb 24 11:59:29 2023
@@ -0,0 +1,432 @@
+<!--
+    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.0.4</version>
+    <packaging>bundle</packaging>
+
+    <scm>
+        <connection>scm:git:https://github.com/apache/felix-dev.git</connection>
+        <developerConnection>scm:git:https://github.com/apache/felix-dev.git</developerConnection>
+        <url>https://gitbox.apache.org/repos/asf?p=felix-dev.git</url>
+      <tag>org.apache.felix.http.jetty-5.0.4</tag>
+  </scm>
+
+    <properties>
+        <felix.java.version>11</felix.java.version>
+	<jetty.version>11.0.13</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.4</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
+                        </Export-Package>
+                        <Private-Package>
+                            org.apache.felix.http.base.*,
+                            org.apache.felix.http.jetty.*,
+                            org.eclipse.jetty,
+                            org.eclipse.jetty.version
+                        </Private-Package>
+                        <Conditional-Package>
+                            org.apache.commons.*
+                        </Conditional-Package>
+                        <Import-Package>
+                            sun.misc;resolution:=optional,
+                            sun.nio.ch;resolution:=optional,
+                            javax.imageio;resolution:=optional,
+                            javax.sql;resolution:=optional,
+                            org.ietf.jgss;resolution:=optional,
+                            org.osgi.service.cm;resolution:=optional;version="[1.3,2)",
+                            org.osgi.service.event;resolution:=optional;version="[1.2,2)",
+                            org.osgi.service.log;resolution:=optional;version="[1.3,2)",
+                            org.osgi.service.metatype;resolution:=optional;version="[1.1,2)",
+                            org.osgi.service.useradmin;resolution:=optional;version="[1.1,2)",
+                            org.osgi.service.http;version="[1.2.1,1.3)",
+                            org.osgi.service.http.context;version="[1.1,1.2)",
+                            org.osgi.service.http.runtime;version="[1.1,1.2)",
+                            org.osgi.service.http.runtime.dto;version="[1.1,1.2)",
+                            org.slf4j;version="[1.0,3.0)",
+                            *
+                        </Import-Package>
+                        <DynamicImport-Package>
+                            org.osgi.service.cm;version="[1.3,2)",
+                            org.osgi.service.event;version="[1.2,2)",
+                            org.osgi.service.log;version="[1.3,2)",
+                            org.osgi.service.metatype;version="[1.4,2)"
+                        </DynamicImport-Package>
+                        <Provide-Capability>
+                            osgi.implementation;osgi.implementation="osgi.http";version:Version="1.1";
+                            uses:="javax.servlet,javax.servlet.http,org.osgi.service.http.context,org.osgi.service.http.whiteboard",
+                            osgi.implementation;osgi.implementation="osgi.http";version:Version="2.0";
+                            uses:="jakarta.servlet,jakarta.servlet.http,org.osgi.service.servlet.context,org.osgi.service.servlet.whiteboard",
+                            osgi.service;objectClass:List&lt;String&gt;="org.osgi.service.servlet.runtime.HttpServiceRuntime";
+                            uses:="org.osgi.service.servlet.runtime,org.osgi.service.servlet.runtime.dto",
+                            osgi.service;objectClass:List&lt;String&gt;="org.osgi.service.http.runtime.HttpServiceRuntime";
+                            uses:="org.osgi.service.http.runtime,org.osgi.service.http.runtime.dto",
+                            osgi.service;objectClass:List&lt;String&gt;="org.osgi.service.http.HttpService";
+                            uses:="org.osgi.service.http",
+                            osgi.serviceloader;osgi.serviceloader="org.eclipse.jetty.http.HttpFieldPreEncoder"
+                        </Provide-Capability>
+                        <Require-Capability>
+                            osgi.contract;filter:="(&amp;(osgi.contract=JavaServlet)(version=4.0))",
+                            osgi.contract;filter:="(&amp;(osgi.contract=JakartaServlet)(version=5.0))",
+                            osgi.extender;filter:="(osgi.extender=osgi.serviceloader.registrar)";resolution:=optional,
+                            osgi.extender;filter:="(osgi.extender=osgi.serviceloader.processor)";resolution:=optional,
+                            osgi.serviceloader;filter:="(osgi.serviceloader=org.eclipse.jetty.http.HttpFieldPreEncoder)";resolution:=optional;cardinality:=multiple,
+                            osgi.serviceloader;filter:="(osgi.serviceloader=org.eclipse.jetty.io.ssl.ALPNProcessor$Server)";resolution:=optional;cardinality:=multiple
+                        </Require-Capability>
+                        <Include-Resource>
+                            {maven-resources},${project.build.directory}/serviceloader-resources
+                        </Include-Resource>
+                        <_removeheaders>
+                            Private-Package,Conditional-Package
+                        </_removeheaders>
+                    </instructions>
+                    <!-- 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.osgi.service.servlet.*,
+                                    org.apache.felix.http.jetty
+                                </Export-Package>
+                                <Private-Package>
+                                    org.apache.felix.http.base.*,
+                                    org.apache.felix.http.jetty.*,
+                                    org.osgi.service.servlet.*
+                                </Private-Package>
+                                <Import-Package>
+                                    org.osgi.service.cm;resolution:=optional;version="[1.3,2)",
+                                    org.osgi.service.event;resolution:=optional;version="[1.2,2)",
+                                    org.osgi.service.log;resolution:=optional;version="[1.3,2)",
+                                    org.osgi.service.metatype;resolution:=optional;version="[1.4,2)",
+                                    org.osgi.service.useradmin;resolution:=optional;version="[1.1,2)",
+                                    org.osgi.service.http;version="[1.2.1,1.3)",
+                                    org.osgi.service.http.context;version="[1.1,1.2)",
+                                    org.osgi.service.http.runtime;version="[1.1,1.2)",
+                                    org.osgi.service.http.runtime.dto;version="[1.1,1.2)",
+                                    *
+                                </Import-Package>
+                                <!-- We need to override this from the base configuration to exclude the ServiceLoader capabilities -->
+                                <Provide-Capability>
+                                    osgi.implementation;osgi.implementation="osgi.http";version:Version="1.1";
+                                    uses:="javax.servlet,javax.servlet.http,org.osgi.service.http.context,org.osgi.service.http.whiteboard",
+                                    osgi.implementation;osgi.implementation="osgi.http";version:Version="2.0";
+                                    uses:="jakarta.servlet,jakarta.servlet.http,org.osgi.service.servlet.context,org.osgi.service.servlet.whiteboard",
+                                    osgi.service;objectClass:List&lt;String&gt;="org.osgi.service.servlet.runtime.HttpServiceRuntime";
+                                    uses:="org.osgi.service.servlet.runtime,org.osgi.service.servlet.runtime.dto",
+                                    osgi.service;objectClass:List&lt;String&gt;="org.osgi.service.http.runtime.HttpServiceRuntime";
+                                    uses:="org.osgi.service.http.runtime,org.osgi.service.http.runtime.dto",
+                                    osgi.service;objectClass:List&lt;String&gt;="org.osgi.service.http.HttpService";
+                                    uses:="org.osgi.service.http"
+                                </Provide-Capability>
+                                <!-- We need to override this from the base configuration to exclude the ServiceLoader capabilities -->
+                                <Require-Capability>
+                                  osgi.contract;filter:="(&amp;(osgi.contract=JavaServlet)(version=4.0))",
+                                  osgi.contract;filter:="(&amp;(osgi.contract=JakartaServlet)(version=5.0))"
+                                </Require-Capability>
+                                <!-- We need to override this from the base configuration to exclude the ServiceLoader resources -->
+                                <Include-Resource>
+                                    {maven-resources}
+                                </Include-Resource>
+                                <_removeheaders>
+                                    X-Jetty-Version,Private-Package,Conditional-Package
+                                </_removeheaders>
+                            </instructions>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+        </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.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.0.4.pom.asc
==============================================================================
--- release/felix/org.apache.felix.http.jetty-5.0.4.pom.asc (added)
+++ release/felix/org.apache.felix.http.jetty-5.0.4.pom.asc Fri Feb 24 11:59:29 2023
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmP0l/IACgkQP89Sn/Ly
+egZdrg//VUpQVXj1K5UYS+eyMS9pdnkWww9IXnnqlY9+cXD6EVhipjaaIO5wVW9o
+zK5s6y4sOYe2ecA091mveNOdr/+PlahXNruI5/Pj9jxH75eiQ/upBuPUlEfoEN5n
+avyFTFf1smp3riH4LhaSuOxdsgnKMr8bxLtEQd1ZZ7sD7CaPOfINk3ThT10AA0xu
+T6zSGoeUeG1uwDK9uFzR/497JOWsxKMgbOlnQYIGcobhMoW578+ZOOAhHtjS7zYN
+7DBKeSoh+w9yLsSoZXWteFblae3ra2cQyJIGdlbjB/9pbDlqcbTjJRFvHjg18S+K
+NPwZOWQy/fDYP1cIrosLFkooYhUD2sFUSS5FpT8yU3mcBOdnUfBG6AG2CUn9KmYf
+H04PKHBGBYZcikpgp9Xia3Gc1bDAXDptJGSE1VG11KLkX0Y/Q38Wwk4BWPS2mndr
+6sO8eBg8KqiuInxR707BoyPdTE0ecuW6R4TEzTT2qzRuXTtDFdRaOM+Hg5uCk3SG
+YcnCwgT8drFszpT+r9bhgXdpre7v9WpbRaT9VAJ+UAg+AIVW6dcUbCWI3HExAypY
+t/xqoSwhpeTp7fsl4qxbLbCDYvLL18MORtpbHc2jHE4UxLEr0yAjecQzPeIra0oX
+CZX4h3paMVgohTLlI9CLH7grxK81ybzqt8bubhc5E/GpsfA3Dsk=
+=Lfm4
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.http.jetty-5.0.4.pom.sha1
==============================================================================
--- release/felix/org.apache.felix.http.jetty-5.0.4.pom.sha1 (added)
+++ release/felix/org.apache.felix.http.jetty-5.0.4.pom.sha1 Fri Feb 24 11:59:29 2023
@@ -0,0 +1 @@
+4749c650228a4c7813970f34b7fe62684c9c3091
\ No newline at end of file

Added: release/felix/org.apache.felix.http.jetty-5.0.4.pom.sha512
==============================================================================
--- release/felix/org.apache.felix.http.jetty-5.0.4.pom.sha512 (added)
+++ release/felix/org.apache.felix.http.jetty-5.0.4.pom.sha512 Fri Feb 24 11:59:29 2023
@@ -0,0 +1 @@
+b2c903e9082fbe97e7bb51bf8b64ade9d7d517ad9fe5806b1005b34be2a41a30c13f3395874df9fc675d4c5454c117be9babc25fc6a65a95c09dc30ef0965679  org.apache.felix.http.jetty-5.0.4.pom

Added: release/felix/org.apache.felix.webconsole-4.8.8-all.jar
==============================================================================
Binary file - no diff available.

Propchange: release/felix/org.apache.felix.webconsole-4.8.8-all.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/felix/org.apache.felix.webconsole-4.8.8-all.jar.asc
==============================================================================
--- release/felix/org.apache.felix.webconsole-4.8.8-all.jar.asc (added)
+++ release/felix/org.apache.felix.webconsole-4.8.8-all.jar.asc Fri Feb 24 11:59:29 2023
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmP0mP8ACgkQP89Sn/Ly
+egZaZA/7B69Fctoduqf9v6K469rASFWbs87KeTAYpxrciRTOlixKF3jvtdaPXznH
+ZXkJ0vsSkVxQsL5pac6wOHvS7H/z3oATFA1JIvT7BETf14kmjeIt9K1KcfbyPpc4
+gJxhyI4CROR6rV7q18oHHUtu02pjeKQSagKtBFvWx+iz8CRhpuvzv8HUqvYe+fL6
+d8mRlVwVfnpneCY3Et0Qg16+iAG91xg0HFnU2bfwLxNPDMY5X7xpmU430jCh7jCY
+HBvU2+CsrgG748Stc/YFNVwpT6BNRC14bdQoJi9vY/Ol4aOJ6hVm5ra12hLeFJNX
+b1OVsMwSLFCK05YfXH+/dYSaL5UjjKKNYR4oUQ0+lK3vu4fTgTPY7HBpJU4L26sW
+VFgyowRaKeQkg/VoPQEWyIV5D3B0YFHc3fy+d6nqmUIpiIq8o01L0lkGXCmw7rE5
+VLvhM2xU0qGnNHftwhsN4YQBQtHGssSZm63slUf0m7kCLX4z8gFygq9FybtSra6n
+hvvag4IEKy/QLshVywUzb0hmBpdo5685KZaFs1ZEmOvpLV/aZyn9IZ4trvXPxn+i
+ZLJqD9ofgYZHUgAFiIkVRjnV7IouKBlhzEoEGyqG3ELF+mTElRZ97J2WhOyWmeZn
+jSV2gmCWX07soS6IcHMDpid/+I/ynpHuKeXINpRbo1WC4VPFUO4=
+=pLIm
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.webconsole-4.8.8-all.jar.sha1
==============================================================================
--- release/felix/org.apache.felix.webconsole-4.8.8-all.jar.sha1 (added)
+++ release/felix/org.apache.felix.webconsole-4.8.8-all.jar.sha1 Fri Feb 24 11:59:29 2023
@@ -0,0 +1 @@
+343699c7e20ddb54c708e23ad97c7ff0ba93338a
\ No newline at end of file

Added: release/felix/org.apache.felix.webconsole-4.8.8-all.jar.sha512
==============================================================================
--- release/felix/org.apache.felix.webconsole-4.8.8-all.jar.sha512 (added)
+++ release/felix/org.apache.felix.webconsole-4.8.8-all.jar.sha512 Fri Feb 24 11:59:29 2023
@@ -0,0 +1 @@
+da5046ad9876a458885c94c7cc1c5a98d52296aeb698d6a14a744513d87f3962ac8d4f057f86f48c6a5ec6987ea0bd2605b4c3db7e0438532864ee33b1878634  org.apache.felix.webconsole-4.8.8-all.jar

Added: release/felix/org.apache.felix.webconsole-4.8.8-debug.jar
==============================================================================
Binary file - no diff available.

Propchange: release/felix/org.apache.felix.webconsole-4.8.8-debug.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/felix/org.apache.felix.webconsole-4.8.8-debug.jar.asc
==============================================================================
--- release/felix/org.apache.felix.webconsole-4.8.8-debug.jar.asc (added)
+++ release/felix/org.apache.felix.webconsole-4.8.8-debug.jar.asc Fri Feb 24 11:59:29 2023
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmP0mQAACgkQP89Sn/Ly
+egZIsRAApY5UroMfm4/kIKezGs8eAXiUcT+ciJMRadoZox3i6DPuwQdgD5aLuEL2
+L/zScbb5lLoEYw1JAoljhQ4MM72s0v5TwOjt0gc0SJL3966Fz4FuaHEsQE97BP12
+IjPKdZFCIduzTb3Kw5F3bbYsRFR7bnlrEXTGOb5uvnmdmw2gPwk6FUfxiJd3+E0c
+UlP3l3VBhJnr48+fFZ6zyDW9aCHY5JK65oAmTi6ixXUNQcPjXQDP10/vdmZy7DVK
+BjCsChvss4WM34xbJw2I4srLHizrAHWm4ahMOiYHB1/CbajLomZayPVAe+4GqhLu
+066jQ6OFA1hKRKJdVZg4Br9eg70k9JRiuGP9I4FgwlsXhRMPHJt//tCSPyKY+cjl
+FnLGX//g1eWHg2VGZFvnIdtSz6120pe/dVTbGLDUBrArqyZ9t+W8zx5sIJPy95F4
+X/XDEMk9mlkEegc9EDhchnITGRxtKSVmOkQ4k39XEZSkR/sVXrj+HgWfzw9JFZzF
+2G4be0m7qqou/swx/8U0jcz8+wsjLM5ViXfxdSQrE8t8tfc82t6N9qd7REqy67gC
+KQIVTS3kWtX/d2QlKY1MXUo5CDmXueNfrIiJSYDYhZWYEKo4Dhp+hE7tlrhFQ/Xf
+gDAGA9nxjfP7vC5eE1j4PaYJhY2LRvymkEAXEoJwsLRVnEbHTGQ=
+=dP+f
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.webconsole-4.8.8-debug.jar.sha1
==============================================================================
--- release/felix/org.apache.felix.webconsole-4.8.8-debug.jar.sha1 (added)
+++ release/felix/org.apache.felix.webconsole-4.8.8-debug.jar.sha1 Fri Feb 24 11:59:29 2023
@@ -0,0 +1 @@
+75ee9480bd06ff89201b6f7015a7d44af95ab6fd
\ No newline at end of file

Added: release/felix/org.apache.felix.webconsole-4.8.8-debug.jar.sha512
==============================================================================
--- release/felix/org.apache.felix.webconsole-4.8.8-debug.jar.sha512 (added)
+++ release/felix/org.apache.felix.webconsole-4.8.8-debug.jar.sha512 Fri Feb 24 11:59:29 2023
@@ -0,0 +1 @@
+af00589cce7191405fd434fb980b0321b50882314335f58fda039a7ef6ea4d56245f3ae4c4f54d5cdb9fcad8ca28e8173e7cfe3581c7120eabe9a8a6accb25f3  org.apache.felix.webconsole-4.8.8-debug.jar

Added: release/felix/org.apache.felix.webconsole-4.8.8-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: release/felix/org.apache.felix.webconsole-4.8.8-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/felix/org.apache.felix.webconsole-4.8.8-javadoc.jar.asc
==============================================================================
--- release/felix/org.apache.felix.webconsole-4.8.8-javadoc.jar.asc (added)
+++ release/felix/org.apache.felix.webconsole-4.8.8-javadoc.jar.asc Fri Feb 24 11:59:29 2023
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmP0mQAACgkQP89Sn/Ly
+egZa2xAAnWXaduRZqbqA0ez+q8I7rnLUe9+gUj8pYfItnap6wS9j1ByaePi6YtSi
+0UPLNqGqYv+jhPrxo1BBYXgRsCkQacJxFg++abjRBhEJtNdjTSPg3U0QSsIL6PTi
+QQRtksO+LGHkxBQ64i3U1lLzk8z84TqlPs7CurksThjwq7qQupv8mVcUDiz3UyfP
+aJ07X1cAkI3cGKZofyXBc6ShPaxTmoHiI3gbXQiPXSVtFxLhBIO5ameDdQDQ4OPD
+jD5KNt8nQdxiR2A7pkXriMmP8nXyssxa6rYpUe5nOFCLtAdKxPHjuE/hn7EekY1l
+FnkJZNDpPa/m9qiiir9BvOv+sYrib58Buq2K9nlUFjNfyJuII9e28nlaF03EfRw+
+PVjuZFa5Zx3KL4gTlLyyURDj9hrNqlyaXk/jPgtYLtg7dPkiMIntpDBigY7YF+s5
+0EN3re9y67rtaKOG6FHanMuARH+WiahqvbQo1oVoYnqtH/IN7MHyWDXqfQAmnCGb
+unanBOJTDAJx2yh/9H45OaYHHqf4bLqpjgsIo2H1W8ptV6OKijjL5SfZnjtByzSr
+oqDPXCuZqEQh5xn6Bh3v2A3H9uFBFfYOFtZl90Y5RqUKqhSKgTriyLovOZWpQD7a
+Hmi6FROQakX8ewx39zYJrbjwDheC9u6nQLAz8R2biHN7LqE76+o=
+=Zabg
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.webconsole-4.8.8-javadoc.jar.sha1
==============================================================================
--- release/felix/org.apache.felix.webconsole-4.8.8-javadoc.jar.sha1 (added)
+++ release/felix/org.apache.felix.webconsole-4.8.8-javadoc.jar.sha1 Fri Feb 24 11:59:29 2023
@@ -0,0 +1 @@
+b675f02eec3794224410d47ac2daafaa0dd2831d
\ No newline at end of file

Added: release/felix/org.apache.felix.webconsole-4.8.8-javadoc.jar.sha512
==============================================================================
--- release/felix/org.apache.felix.webconsole-4.8.8-javadoc.jar.sha512 (added)
+++ release/felix/org.apache.felix.webconsole-4.8.8-javadoc.jar.sha512 Fri Feb 24 11:59:29 2023
@@ -0,0 +1 @@
+5e25fd809058aafe5ba93e0bbecde2fc4722df678ec0aa9226a84c6b11cd7f7188e8fe08f01efb248c7f9bac47932dd35ca6bbafad20ac0037bab4f1f75af7d1  org.apache.felix.webconsole-4.8.8-javadoc.jar

Added: release/felix/org.apache.felix.webconsole-4.8.8-source-release.tar.gz
==============================================================================
Binary file - no diff available.

Propchange: release/felix/org.apache.felix.webconsole-4.8.8-source-release.tar.gz
------------------------------------------------------------------------------
    svn:mime-type = application/x-gzip

Added: release/felix/org.apache.felix.webconsole-4.8.8-source-release.tar.gz.asc
==============================================================================
--- release/felix/org.apache.felix.webconsole-4.8.8-source-release.tar.gz.asc (added)
+++ release/felix/org.apache.felix.webconsole-4.8.8-source-release.tar.gz.asc Fri Feb 24 11:59:29 2023
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmP0mP8ACgkQP89Sn/Ly
+egabvg//dAMSg1dL24bEYEpkjOI8GXT++RuEAhLI/8656lLf04Gkx1dUr+6I0EqT
+fHKY6UZJkLt75IBmfFwPNZY/eA834dKwWLPdYX2zFpjDh5F+IsgBCvmVB42xDrVT
+S/UwHanElm4FzoDwHSZDmW+n0zA90npfFQ8XrQ2U/pb1wfkB1s3PBgN9x3Av/3UN
+bf3sfMBtEbLBIT6SmAsoHs+7Nz4tasePh0BqaZ0N2Jb961+ZR+QvCZJKsTfZVj2z
+vFM/xVRX6Q22R9rg4iFLku7XC2WSKXSEeAgFcWxO5iTrkForsChJckh4FzYm/jVX
+ftrxPHEoQY2WrMZVGT9P8odwD7MnDszFaxleHxIZAcX9zCBCdkru1zXd8gk6tPFQ
+s96S/Zd1UhjEVWWR5RQJ03UXO1a5IteqhiWG2EGUG8pyuFh9mkB0+cFPvQquALVh
+FYm/nP5C7+o1iWg3oznJ57EF1jUeJnP0l4nuf5PJEBzjsqBthnlqnNGt9TgJWZw4
+wZAvNqhT64KuKFBIaWdQIaNNLxUfOcih9voMjzz+2AHYJeGDEHEUncWebKRt8hIv
+3W1Zdvs70tfVXhWrd/Jxp5NKRxtploigobAyxpOInw0NRihyQ+jx5d/wlm4vpr9i
+vRnmE4Ga7GuXxPYxBRL3Z4d7+Jrcr1v+pFjQ8uGM5ktx99DtRxo=
+=dHI0
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.webconsole-4.8.8-source-release.tar.gz.sha1
==============================================================================
--- release/felix/org.apache.felix.webconsole-4.8.8-source-release.tar.gz.sha1 (added)
+++ release/felix/org.apache.felix.webconsole-4.8.8-source-release.tar.gz.sha1 Fri Feb 24 11:59:29 2023
@@ -0,0 +1 @@
+8fec3fcb6d25a0fe43e7eaf410563a0184da492b
\ No newline at end of file

Added: release/felix/org.apache.felix.webconsole-4.8.8-source-release.tar.gz.sha512
==============================================================================
--- release/felix/org.apache.felix.webconsole-4.8.8-source-release.tar.gz.sha512 (added)
+++ release/felix/org.apache.felix.webconsole-4.8.8-source-release.tar.gz.sha512 Fri Feb 24 11:59:29 2023
@@ -0,0 +1 @@
+5845307586c7eebb8a5a76fc8fcbeccab8d095ed3c107a817e49ed64790db59c787b0eabf874c860e3426c6faf44dd25245846000f43d624213bc5b17d24753a  org.apache.felix.webconsole-4.8.8-source-release.tar.gz

Added: release/felix/org.apache.felix.webconsole-4.8.8-source-release.zip
==============================================================================
Binary file - no diff available.

Propchange: release/felix/org.apache.felix.webconsole-4.8.8-source-release.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/felix/org.apache.felix.webconsole-4.8.8-source-release.zip.asc
==============================================================================
--- release/felix/org.apache.felix.webconsole-4.8.8-source-release.zip.asc (added)
+++ release/felix/org.apache.felix.webconsole-4.8.8-source-release.zip.asc Fri Feb 24 11:59:29 2023
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmP0mP8ACgkQP89Sn/Ly
+egYoPA//YBdo3HedCiVEXu0k3pb19fBv+6nuVdtJkQgi2jnbww79rbXEEaRQGUrD
+uLgJQpaNw6u+1UAvyYD9BxShUqgUG474WgDBCcwvo+G0+OtutmyAR0aUvWqU4KMW
+1M1q2mC+yf+zy7JpepQGoZXNleD+S4mE1FgjH7iLh5JwZNm3uTLusVWrYS7fc8Ze
+XfXl/wIJTazDopNL3qCiHW9LepyUgT1FRuvQnJb8a/tiM2LqaHu0w4q/l5ADa/yt
+wkYYF7DOSsHrqamC1wkSC0mxxyEcmQPuaDVikiKBjcH7gQ/d7RLUvDhu1BTN0BTa
+/ysDxgYXge/NlxQquzYM7tFvOT9OSdyCGf1EaNSgTq9NWblhtM37F2RLlHrfsTI8
+cVNlEdk8zW2sVbANcfvJKd5HDLDomV2EqZLIGOZuQYn7RHcdrhqav10Uk+l9RmtK
+i1Ii+iaZRI4m23d7qU7OxdnMftmN+7Rqg4iOPJ+orWnbEa3wzkfnHcWeqFFklgA4
+iHb72AcqtP5vpRNrhbt/tfEg6ZYNnYC62iBClJJgxeNVLbElnMOA80wIDNYsXEXa
+0nCJuewbJTFW6TvHOR9xmlImmuxjmo71fDg/oHadI77bcRUZOQYpjFP02zj1y/kZ
+dr4cCNj6jAzOQTAt4c9DHXt/iw1Vup7EkcdYP3B7q2K/Hn+EVxI=
+=rGVn
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.webconsole-4.8.8-source-release.zip.sha1
==============================================================================
--- release/felix/org.apache.felix.webconsole-4.8.8-source-release.zip.sha1 (added)
+++ release/felix/org.apache.felix.webconsole-4.8.8-source-release.zip.sha1 Fri Feb 24 11:59:29 2023
@@ -0,0 +1 @@
+ba0492450411d49b0ea72140d3583c1008fced37
\ No newline at end of file

Added: release/felix/org.apache.felix.webconsole-4.8.8-source-release.zip.sha512
==============================================================================
--- release/felix/org.apache.felix.webconsole-4.8.8-source-release.zip.sha512 (added)
+++ release/felix/org.apache.felix.webconsole-4.8.8-source-release.zip.sha512 Fri Feb 24 11:59:29 2023
@@ -0,0 +1 @@
+9308f56c586055e32df8a76cf8a95b0a16c016dd7470196d47178ab5fabaf31077404dc60016a636caebf185cb4ab1b4274bfa89cae2b4df638196b85ef083eb  org.apache.felix.webconsole-4.8.8-source-release.zip

Added: release/felix/org.apache.felix.webconsole-4.8.8-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: release/felix/org.apache.felix.webconsole-4.8.8-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/felix/org.apache.felix.webconsole-4.8.8-sources.jar.asc
==============================================================================
--- release/felix/org.apache.felix.webconsole-4.8.8-sources.jar.asc (added)
+++ release/felix/org.apache.felix.webconsole-4.8.8-sources.jar.asc Fri Feb 24 11:59:29 2023
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmP0mP8ACgkQP89Sn/Ly
+egZa4hAAjGlO+Ls+22KLaoJwkQiGv+cXm+dvVZNShq+oeZBuDUGO0VkWk+ebtzMx
+9vFzLXivxIZ0bDymOx9Z0b4EGB8DxEpVyO2/APPgpY4xFbnwypkekR1kpkx3my3b
+iTlNXJaF2XxMK/OT7ln3E9PcUrt5z3IiSSvYdt/d1WslZZFnFAyepxieBJMN0kfC
+IX4IuGY/LemSz9pDomh00C7ZFQ7CK6sANyZf7UGb3Bb11MVkBNmdIwIo91YaX5UR
+4Z5o5zf+Ceqmp/vNUccHq7jFHBO1QgENwyrI+GeKtn80uP6kZ7gMTN1t1Yt2y7vx
+b3NqpGSuzx2PvUsRj7Q7MTeUzFU0vZmGS+PUCdCCXXxCv3aPHQLxr86557DdN0mA
+nbWVAXzXz3f1Y23SeNAsmrBvDHv2UMvdnWMKVYAvK3Cr/uDrVNS4sE8C2HYf8Qqv
+GC6H11dZRCtoy8MQfOt0KS383dPQtEoJEEmxKfO38irQ7SB/Rme6ZeXFwB2HiTrr
+OuFnSLjUjzURzPO9bq5G/j+LAjzP5QDWmFyD/cMxksRY0hMetziW6t1tNR3IuCt4
+QLUwsyML6QIuW2qaElOWYpMGG1DNUwklpNb5KXS6EsvLu8xuTLEER0UFjqMxoXyj
+JorTLHZYY8m4Rh0Z08WicOaBxMpJP25qEEAX5vR6txIPFB1JzNY=
+=H2TQ
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.webconsole-4.8.8-sources.jar.sha1
==============================================================================
--- release/felix/org.apache.felix.webconsole-4.8.8-sources.jar.sha1 (added)
+++ release/felix/org.apache.felix.webconsole-4.8.8-sources.jar.sha1 Fri Feb 24 11:59:29 2023
@@ -0,0 +1 @@
+d78f696930e024cd5f9c05dd1b6bd3c0f2181831
\ No newline at end of file

Added: release/felix/org.apache.felix.webconsole-4.8.8-sources.jar.sha512
==============================================================================
--- release/felix/org.apache.felix.webconsole-4.8.8-sources.jar.sha512 (added)
+++ release/felix/org.apache.felix.webconsole-4.8.8-sources.jar.sha512 Fri Feb 24 11:59:29 2023
@@ -0,0 +1 @@
+875a365a148533f53f13ae20642cf68512a94ab8675195e531a6b43989e65bf5bc51227e099442eb27451adbb586782cf790b76dabdefd4a3bcb48545d22cb7c  org.apache.felix.webconsole-4.8.8-sources.jar

Added: release/felix/org.apache.felix.webconsole-4.8.8.jar
==============================================================================
Binary file - no diff available.

Propchange: release/felix/org.apache.felix.webconsole-4.8.8.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/felix/org.apache.felix.webconsole-4.8.8.jar.asc
==============================================================================
--- release/felix/org.apache.felix.webconsole-4.8.8.jar.asc (added)
+++ release/felix/org.apache.felix.webconsole-4.8.8.jar.asc Fri Feb 24 11:59:29 2023
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmP0mP4ACgkQP89Sn/Ly
+egZyRw//TpDp+INswfgTie/laFnQbRwFu8577d0aEd0N8xvUpUMpM+RfLA6Z7Gqw
+WZPQ0gkUwickv1Z57VqG/mh+htUfEpIMiR4RCs1TFPUT8x+I16Y0ZP/PFP3QIk+a
+CEcXqvYD0DsuIHF7gQtREPegbv/GxBUg2KnEhNTYwrNE2AxL76OBUtA/gbDAkBFF
+BFFaChlgs5K35p0SpmMqeVRTWK0PUv04FIubhSNW0SpLzrKkJbfpSPkVGb0/0Tt4
+exUsmHQeUdNbzhCy8dG4xN8UlEZDsZ5Yjmu2KpOFD+DcI1WrnbT/FU4qOdjsNCT6
+r4d8bvOZYofSsPgnSmRz3QPGkkog/JbysPHjtg2BLorwkhh7O6x0QSBDtWQiF1za
+FnZZMvXBA0CzT+Kft7Ih/ER4imkzM866xdnmBmWgfJc7Hws66gbL7yVawegIE8LZ
+9123vI+pPNNHxRr/FIQm/EcQd+ujWMITMht5QrguuuHK9PClNmZ0ow/9ez61amC+
+kodvFQjGUxPKTf8Do1VM+vwRncqRrKLl7V6XQU4j2XTAxaZDw6e6CM3Ra0Qcpx4F
+7zjFUkEcdx3Jd57+2KguXNUwNArBFxICnWv2bJ5IN6FNfHh3OZtE/q1sfGey/L+3
+qMR+QHG0lhjZJmKAusdF+ZqY5ncscdsFEvUa9wzH8CXbxtAKGzE=
+=bqDn
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.webconsole-4.8.8.jar.sha1
==============================================================================
--- release/felix/org.apache.felix.webconsole-4.8.8.jar.sha1 (added)
+++ release/felix/org.apache.felix.webconsole-4.8.8.jar.sha1 Fri Feb 24 11:59:29 2023
@@ -0,0 +1 @@
+3c14ad35fae38cc8a7eac364433c502c257caa83
\ No newline at end of file

Added: release/felix/org.apache.felix.webconsole-4.8.8.jar.sha512
==============================================================================
--- release/felix/org.apache.felix.webconsole-4.8.8.jar.sha512 (added)
+++ release/felix/org.apache.felix.webconsole-4.8.8.jar.sha512 Fri Feb 24 11:59:29 2023
@@ -0,0 +1 @@
+cb38c2fc6b2de72644410be4112652c6de6a26d7e79abe558b50d9928eef9370d7ed8252413ae5d6da9926d8a416cb7570307368ff7874eba9901b6c1560916b  org.apache.felix.webconsole-4.8.8.jar

Added: release/felix/org.apache.felix.webconsole-4.8.8.pom
==============================================================================
--- release/felix/org.apache.felix.webconsole-4.8.8.pom (added)
+++ release/felix/org.apache.felix.webconsole-4.8.8.pom Fri Feb 24 11:59:29 2023
@@ -0,0 +1,429 @@
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+    
+    http://www.apache.org/licenses/LICENSE-2.0
+    
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.apache.felix</groupId>
+        <artifactId>felix-parent</artifactId>
+        <version>7</version>
+        <relativePath>../pom/pom.xml</relativePath>
+    </parent>
+
+    <artifactId>org.apache.felix.webconsole</artifactId>
+    <packaging>bundle</packaging>
+    <version>4.8.8</version>
+
+    <name>Apache Felix Web Management Console</name>
+    <description>
+        Web Based Management Console for OSGi Frameworks. See
+        http://felix.apache.org/site/apache-felix-web-console.html for more
+        information on this bundle.
+    </description>
+    
+    <properties>
+        <webconsole.exports>
+            org.apache.felix.webconsole;provide:=true,
+            org.apache.felix.webconsole.bundleinfo;provide:=true,
+            org.apache.felix.webconsole.i18n;provide:=true,
+            org.apache.felix.webconsole.spi
+	</webconsole.exports>
+    </properties>
+
+    <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.webconsole-4.8.8</tag>
+    </scm>
+
+    <build>
+        <resources>
+            <!-- default resources (may be removed when compat is removed) -->
+            <resource>
+                <directory>${basedir}/src/main/resources</directory>
+            </resource>
+            <resource>
+                <targetPath>META-INF</targetPath>
+                <directory>${basedir}</directory>
+                <includes>
+                    <include>LICENSE</include>
+                    <include>NOTICE</include>
+                    <include>DEPENDENCIES</include>
+                    <include>changelog.txt</include>
+                </includes>
+            </resource>
+            <!-- CSS and images for backwards compatibility -->
+            <resource>
+                <directory>${basedir}/src/main/compat</directory>
+            </resource>
+        </resources>
+        <plugins>
+            <!-- translate UTF-8 encoded properties files to ISO-8859-1 -->
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>native2ascii-maven-plugin</artifactId>
+                <version>1.0-beta-1</version>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>native2ascii</goal>
+                        </goals>
+                        <configuration>
+                            <encoding>UTF-8</encoding>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-bundle-plugin</artifactId>
+                <version>5.1.1</version>
+                <extensions>true</extensions>
+                <configuration>
+                    <instructions>
+                        <Bundle-SymbolicName>
+                            ${project.artifactId}
+                        </Bundle-SymbolicName>
+                        <Bundle-Vendor>
+                            The Apache Software Foundation
+                        </Bundle-Vendor>
+                        <Bundle-DocURL>
+                            http://felix.apache.org/site/apache-felix-web-console.html
+                        </Bundle-DocURL>
+                        <Bundle-Activator>
+                            org.apache.felix.webconsole.internal.OsgiManagerActivator
+                        </Bundle-Activator>
+                        <Export-Package>
+                            ${webconsole.exports}
+                        </Export-Package>
+                        <!-- Import-Package header is also used for the all bundle -->
+                        <Import-Package>
+                            javax.servlet.*;version="[2.4,5)",
+                            !javax.portlet,
+                            !org.apache.felix.bundlerepository,
+                            !org.osgi.service.obr,
+                            !org.osgi.service.cm,
+                            !org.osgi.service.condpermadmin,
+                            !org.osgi.service.log,
+                            !org.osgi.service.metatype,
+                            !org.osgi.service.permissionadmin,
+                            !org.osgi.service.prefs,
+                            !org.osgi.service.wireadmin,
+                            *
+                        </Import-Package>
+                        <!-- DynamicImport-Package header is also used for the all bundle -->
+                        <DynamicImport-Package>
+                            org.apache.felix.bundlerepository;version="[2.0,3)",
+                            org.osgi.service.obr;version="[1.0,2)",
+                            org.osgi.service.cm;version="[1.5,2)",
+                            org.osgi.service.condpermadmin;version="[1.0,2)",
+                            org.osgi.service.log;version="[1.3,2)",
+                            org.osgi.service.metatype;version="[1.4,2)",
+                            org.osgi.service.permissionadmin;version="[1.2,2)",
+                            org.osgi.service.prefs;version="[1.1,2)",
+                            org.osgi.service.wireadmin;version="[1.0,2)"
+                        </DynamicImport-Package>
+                        <Embed-Dependency>
+                            org.apache.felix.utils;inline=org/apache/felix/utils/manifest/**,
+                            org.apache.felix.utils;inline=org/apache/felix/utils/json/**
+                        </Embed-Dependency>
+                        <_removeheaders>
+                            Embed-Dependency,Private-Package,Include-Resource
+                        </_removeheaders>
+                    </instructions>
+                </configuration>
+                <executions>
+                    <execution>
+                        <id>baseline</id>
+                        <goals>
+                            <goal>baseline</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <artifactId>maven-javadoc-plugin</artifactId>
+                <configuration>
+                    <excludePackageNames>
+                        *.internal
+                    </excludePackageNames>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.rat</groupId>
+                <artifactId>apache-rat-plugin</artifactId>
+                <configuration>
+                    <includes>
+                        <include>src/**</include>
+                    </includes>
+                    <excludes>
+                        <exclude>src/main/appended-resources/**</exclude>
+                        <exclude>src/main/resources/res/lib/jquery-3.6.1.js</exclude>
+                        <exclude>src/main/resources/res/lib/jquery-migrate-3.4.0.js</exclude>
+                        <exclude>src/main/resources/res/lib/jquery-ui-1.13.2.js</exclude>
+                        <exclude>src/main/resources/res/lib/jquery-ui-i18n-1.12.1.js</exclude>
+                        <exclude>src/main/resources/res/lib/autosize.min.js</exclude>
+                        <exclude>src/main/resources/res/lib/jquery.cookies-2.2.0.js</exclude>
+                        <exclude>src/main/resources/res/lib/jquery.multifile-1.4.6.js</exclude>
+                        <exclude>src/main/resources/res/lib/jquery.tablesorter-2.0.3.js</exclude>
+                        <exclude>src/main/resources/res/lib/reset-min.css</exclude>
+                        <exclude>src/main/resources/res/lib/themes/**</exclude>
+                        <exclude>src/main/resources/res/ui/ui.tabs.paging.js</exclude>
+                        <exclude>src/main/resources/templates/*.html</exclude>
+                        <exclude>src/main/debug-resources/res/lib/**</exclude>
+                    </excludes>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
+   <profiles>
+       <!--
+           The "all-in-one-bundle" profile builds a bundle including certain
+           3rd party libraries and classes, namely: Commons IO (needed by 
+           Commons FileUpload), Commons FileUpload.
+           The "all-in-one-bundle" can be used in deployments where these
+           dependencies need not be deployed separately.
+       -->
+       <profile>
+           <id>all-in-one-bundle</id>
+           <activation><activeByDefault>true</activeByDefault></activation>
+           <build>
+               <plugins>
+                   <plugin>
+                       <groupId>org.apache.felix</groupId>
+                       <artifactId>maven-bundle-plugin</artifactId>
+                       <executions>
+                           <execution>
+                               <id>all-in-one-bundle</id>
+                               <goals>
+                                   <goal>bundle</goal>
+                               </goals>
+                               <configuration>
+                                   <classifier>all</classifier>
+                                   <instructions>
+                                       <Bundle-Name>
+                                           ${project.name} (All In One)
+                                       </Bundle-Name>
+                                       <Bundle-Version>
+                                           ${project.version}-all
+                                       </Bundle-Version>
+                                       <Export-Package>
+                                           org.apache.commons.fileupload,
+                                           org.apache.commons.fileupload.disk,
+                                           org.apache.commons.fileupload.servlet,
+                                           org.apache.commons.fileupload.util,
+                                           org.apache.commons.io.*,
+                                           org.apache.felix.inventory,
+                                           ${webconsole.exports}
+                                       </Export-Package>
+                                       <Embed-Dependency>
+                                           <!-- Import/Export-Package parsing -->
+                                           org.apache.felix.utils;inline=org/apache/felix/utils/manifest/**,
+                                           org.apache.felix.utils;inline=org/apache/felix/utils/json/**,
+                                           org.apache.felix.inventory;inline=true,
+                                           commons-fileupload;inline=true,
+                                           commons-io;inline=true
+                                       </Embed-Dependency>
+                                       <_removeheaders>
+                                           Embed-Dependency,Private-Package,Include-Resource
+                                       </_removeheaders>
+                                   </instructions>
+                               </configuration>
+                           </execution>
+                       </executions>
+                   </plugin>
+                   <!--
+                  <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-remote-resources-plugin</artifactId>
+                    <executions>
+                      <execution>
+                        <goals>
+                          <goal>process</goal>
+                        </goals>
+                        <configuration>
+                          <resourceBundles>
+                            <resourceBundle>org.apache:apache-jar-resource-bundle:1.4</resourceBundle>
+                          </resourceBundles>
+                        </configuration>
+                      </execution>
+                    </executions>
+                  </plugin>
+                  -->
+               </plugins>
+            </build>
+            <dependencies>
+                <dependency>
+                    <groupId>org.apache.felix</groupId>
+                    <artifactId>org.apache.felix.inventory</artifactId>
+                    <version>1.1.0</version>
+                    <scope>provided</scope>
+                </dependency>
+            </dependencies>
+        </profile>
+        
+       <!--
+           The "debug" profile builds a bundle using the non-minified
+           JQuery libraries and CSS files instead to make debugging
+           JQuery related issues easier.
+       -->
+       <profile>
+           <id>debug-bundle</id>
+           <activation><activeByDefault>true</activeByDefault></activation>
+           <build>
+               <plugins>
+                   <plugin>
+                       <groupId>org.apache.felix</groupId>
+                       <artifactId>maven-bundle-plugin</artifactId>
+                       <executions>
+                           <execution>
+                               <id>debug-bundle</id>
+                               <goals>
+                                   <goal>bundle</goal>
+                               </goals>
+                               <configuration>
+                                   <classifier>debug</classifier>
+                                   <instructions>
+                                       <Bundle-Name>
+                                           ${project.name} (JQuery Debug)
+                                       </Bundle-Name>
+                                       <Bundle-Version>
+                                           ${project.version}-debug
+                                       </Bundle-Version>
+                                       <Include-Resource>
+                                           {maven-resources},
+                                           res=src/main/debug-resources/res
+                                       </Include-Resource>
+                                   </instructions>
+                               </configuration>
+                           </execution>
+                       </executions>
+                   </plugin>
+                   <!--
+                  <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-remote-resources-plugin</artifactId>
+                    <executions>
+                      <execution>
+                        <goals>
+                          <goal>process</goal>
+                        </goals>
+                        <configuration>
+                          <resourceBundles>
+                            <resourceBundle>org.apache:apache-jar-resource-bundle:1.4</resourceBundle>
+                          </resourceBundles>
+                        </configuration>
+                      </execution>
+                    </executions>
+                  </plugin>
+                  -->
+               </plugins>
+            </build>
+        </profile>
+    </profiles>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.annotation.versioning</artifactId>
+            <version>1.1.0</version>
+            <scope>provided</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>javax.servlet</groupId>
+            <artifactId>servlet-api</artifactId>
+            <version>2.4</version>
+            <scope>provided</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>commons-fileupload</groupId>
+            <artifactId>commons-fileupload</artifactId>
+            <version>1.5</version>
+            <scope>provided</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>commons-io</groupId>
+            <artifactId>commons-io</artifactId>
+            <version>2.11.0</version>
+            <scope>provided</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>osgi.core</artifactId>
+            <version>6.0.0</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>osgi.cmpn</artifactId>
+            <version>6.0.0</version>
+            <scope>provided</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.felix</groupId>
+            <artifactId>org.apache.felix.shell</artifactId>
+            <version>1.0.0</version>
+            <scope>provided</scope>
+        </dependency>
+
+        <!--  Parsing Import/Export-Package headers -->
+        <dependency>
+            <groupId>org.apache.felix</groupId>
+            <artifactId>org.apache.felix.utils</artifactId>
+            <version>1.11.4</version>
+            <scope>provided</scope>
+            <optional>true</optional>
+        </dependency>
+        
+        <!-- OSGi and Apache Felix OBR API -->
+        <dependency>
+            <groupId>org.apache.felix</groupId>
+            <artifactId>org.osgi.service.obr</artifactId>
+            <version>1.0.2</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.felix</groupId>
+            <artifactId>org.apache.felix.bundlerepository</artifactId>
+            <version>1.6.0</version>
+            <scope>provided</scope>
+            <optional>true</optional>
+        </dependency>
+
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <version>4.13</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.mockito</groupId>
+            <artifactId>mockito-core</artifactId>
+            <version>3.3.0</version>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
+</project>

Added: release/felix/org.apache.felix.webconsole-4.8.8.pom.asc
==============================================================================
--- release/felix/org.apache.felix.webconsole-4.8.8.pom.asc (added)
+++ release/felix/org.apache.felix.webconsole-4.8.8.pom.asc Fri Feb 24 11:59:29 2023
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmP0mP8ACgkQP89Sn/Ly
+egaldhAArS5hPDP37dmOd9cmyyhxIgg9o63uJPq59eZKE9gQXpqUHbUv1QckFW9M
+9+9XS76e8TgcyrxO5eBrkRg8ZS6KyZeqvqPIBZJlNqV47LBmKYDZXOzEewBbz4nx
+w7MeiqZJxdXO7niOvn/z97tpuefq27ObMjxyZ2VBhzZrlgfaKOaDGnTp3raQM4+P
+O/Q6d6r4QtvC7NAMiKA0e7afQGES/62caGGMF9GTda4c8/sOwKSSbIT6AuBfyMLA
+v0x6fapASQuc+0EtORtQ7g3bRpz1Q7NM7dyAIfAj+if8ZMgTeQH5Vbu/aGhpBTKK
+KbnFvylM+LwSFbBK1i3+ae6x1Lm0Vn8zxovqKXOsjOvmIxWdJir4j1XFM0GM8hXj
+ihAK1h5eQrQlu6dfcEcokHEYLA1qZ3D+BzTwSb4ZeA9+KZnXScwwCl4I9U2zERux
++Eb+Q4SPxzYz5/pw4qdJbbtu5IKnCLG9rXV6sE8cV5zzSui5T2mTNsPqtWtB4rQV
+PgCRXpOB+sckl/W6wiDeVVS/XryU2rp+XPlwStER3/BVVn9aZRUCkWwf5eMWz1q5
+/j6esfGAa5lQs5PD+vsQfiMfuLu9h03FOWlR5bgwaQNcr1BXyQhYBiF5ZRx4bPyi
+/OtTDAXcxTrUJBxs+CXnuY4K7WmVrOmYYiGmnw+gX70P4F3IOH0=
+=u3Hr
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.webconsole-4.8.8.pom.sha1
==============================================================================
--- release/felix/org.apache.felix.webconsole-4.8.8.pom.sha1 (added)
+++ release/felix/org.apache.felix.webconsole-4.8.8.pom.sha1 Fri Feb 24 11:59:29 2023
@@ -0,0 +1 @@
+9b4b69e8f7404f8953ca1fa5ab1acbc2856f8cd5
\ No newline at end of file

Added: release/felix/org.apache.felix.webconsole-4.8.8.pom.sha512
==============================================================================
--- release/felix/org.apache.felix.webconsole-4.8.8.pom.sha512 (added)
+++ release/felix/org.apache.felix.webconsole-4.8.8.pom.sha512 Fri Feb 24 11:59:29 2023
@@ -0,0 +1 @@
+48e1b79e4c16f293a99e6c30e68549906882c80a048dcf167bff8093b794224d1dacecdd53ec4db3ef8e4cb75af64a7528cd7a72943a9fcd89841dae5e4129fe  org.apache.felix.webconsole-4.8.8.pom