Added: release/felix/org.apache.felix.http.jetty-4.2.14.pom
==============================================================================
--- release/felix/org.apache.felix.http.jetty-4.2.14.pom (added)
+++ release/felix/org.apache.felix.http.jetty-4.2.14.pom Sun Jul 23 07:24:47 
2023
@@ -0,0 +1,424 @@
+<!--
+    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.14</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.14</tag>
+  </scm>
+    
+    <properties>
+        <felix.java.version>8</felix.java.version>
+        <jetty.version>9.4.51.v20230217</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,
+                            sun.nio.ch;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=3.1))",
+                            
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=3.1))"
+                                </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.8</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-4.2.14.pom.asc
==============================================================================
--- release/felix/org.apache.felix.http.jetty-4.2.14.pom.asc (added)
+++ release/felix/org.apache.felix.http.jetty-4.2.14.pom.asc Sun Jul 23 
07:24:47 2023
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmS39DkACgkQP89Sn/Ly
+egaJ8g//QCVI5R+8Xjdw+T/f6somJvIJe4wHRmXGbmUIXlvn/G/3ZeOoH7bfl6cG
+2pyHHAzmNBEWVjJtwPqAqHGh03XWwinHUaUHrLsj9kYTBlMZLn9GMjNBDsWhvFEr
+oe+/gEUyj3THgdLv3VyxtUYj5NekPagZJfsiQ6jBsaLoPWRA3oZdXd6nlhoxsDoU
+snSsBebgFzZxJv5VBDO6srdDiGXytwgvzZG9DdToeg2YrCs+qn9nVrcEz0ECecnS
+XGY8AlAH5P8DsIzNqc9vjXOLigCtzApQ6SqlD/oSMq0WBZd9VWvSO9I7uRJ6aEIs
+3mN8gt5tmGcBxh7HojIIdKYIngPyu7UClNMyrU3mQfZf4HoiXKUetRPxIhD+/k/l
+kGFu6Jg8stonTENRwAXH3tx9i5s3QJGjlO/2OXwdCcvSE1owxnnNVCMUfjnBiw8U
+Evj1YLemxtmBazq8m7mtDGAKHDqvXeXfqltV5IAF1HB3+Ezg3fzUnVHMn/4K7HSo
+g8RtCJGirPhq+M2w/0QyrWKzl4zDZuMLxWqkrB1UszVMyEGKBcg0p2/LGsrDJ+XB
+QAuwLSq8rMz/wOHZ279p0dK9JjHFLlxTu6wyjgGE59+NisDFY/TUd7JkstfBpu9D
+yQBA/ZjJ0T1vXuBtJE3dusHVkAmUXnL+Yrzw/dSms08qfYil9bY=
+=s6Xs
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.http.jetty-4.2.14.pom.sha1
==============================================================================
--- release/felix/org.apache.felix.http.jetty-4.2.14.pom.sha1 (added)
+++ release/felix/org.apache.felix.http.jetty-4.2.14.pom.sha1 Sun Jul 23 
07:24:47 2023
@@ -0,0 +1 @@
+b2583e6a6eca25ee9fa13964d53c631e59a1a72a
\ No newline at end of file

Added: release/felix/org.apache.felix.http.jetty-4.2.14.pom.sha512
==============================================================================
--- release/felix/org.apache.felix.http.jetty-4.2.14.pom.sha512 (added)
+++ release/felix/org.apache.felix.http.jetty-4.2.14.pom.sha512 Sun Jul 23 
07:24:47 2023
@@ -0,0 +1 @@
+a15425fc3ce4d99bd847e2f265b12f930592314f0331be9b166f6bba15b076d088d0d604b3b1c89c0a8a849dd7989f1db51f00aa290c1182332e529fbc583b23
  org.apache.felix.http.jetty-4.2.14.pom

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

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

Added: release/felix/org.apache.felix.webconsole-4.8.10-all.jar.asc
==============================================================================
--- release/felix/org.apache.felix.webconsole-4.8.10-all.jar.asc (added)
+++ release/felix/org.apache.felix.webconsole-4.8.10-all.jar.asc Sun Jul 23 
07:24:47 2023
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmS4v/cACgkQP89Sn/Ly
+egY0nA//Zm5vwpaYQxNyHZsNbU5tLr7LPQsVghfLTtWF6XiuZvVKWp7xyqgmReAl
+OU3SZeoWwIGYBuliB7gH/dVPnU0A0rNoMXrxCdqRGR1jSMXZUswMiarF2LvlU/mj
+lgSN+gX6RddvdwS6RGz1pxSZMcUnuXcpLMw5mHCUILBSeW0tEfiUkSvR8lUa99Ws
+Dqqnh9SlLcleC20nERA9+s81I76HUhwNfjM5DCbgqxXaHwpbj3gu7aZ0aIK1gVxb
+R++qhZC9yKOZfuW2SstqvqsQLNsS9TFibYHkmD+l7A0huEgbc+WPr0nioBcnmXE2
+I6N+ui+EbE9j/NT1jEziKd9u2lHOOIL6wWsh5+E30psGokwa/nzPfJZr86akd1qM
+034+nwy2CCEGFE72UtnmQnMnyAoWn7T1qB6Bml0OLiN6uiXYJ62vOqLI0drjhkhi
+HuUzLh8Efhq96DnKujB06NaIEtMq77L4hbu7rfhHgz+1r5bQ8FsPaIvBnAgvajkA
+BvMeuHo+G5uwygxwK51ebhjv2jwFJI6neAByLC+279jgmDylLmEPIr9ytva5S5EG
+976saGBC1q2AU/zZwdkQ79wHItzZ3Oto7/WOMjqZTPD8chrTjQCaRO4LrjD2/z6h
+J5xEmnsHwqPEVvCn2L9/qJzHpDn8FsgKea1vDfiqTxQdlZIXz7I=
+=Rili
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.webconsole-4.8.10-all.jar.sha1
==============================================================================
--- release/felix/org.apache.felix.webconsole-4.8.10-all.jar.sha1 (added)
+++ release/felix/org.apache.felix.webconsole-4.8.10-all.jar.sha1 Sun Jul 23 
07:24:47 2023
@@ -0,0 +1 @@
+f591cc6493688b76f90ed9eb82c4ba3729bfb04e
\ No newline at end of file

Added: release/felix/org.apache.felix.webconsole-4.8.10-all.jar.sha512
==============================================================================
--- release/felix/org.apache.felix.webconsole-4.8.10-all.jar.sha512 (added)
+++ release/felix/org.apache.felix.webconsole-4.8.10-all.jar.sha512 Sun Jul 23 
07:24:47 2023
@@ -0,0 +1 @@
+56f605788efedaa8820aaabc7fa14c84328536da41ce342170878365cfd2df8af602953f81a115da9f998b9d8c0d73e91ab71cf8f7754e8144bfee2ff6a81f3a
  org.apache.felix.webconsole-4.8.10-all.jar

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

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

Added: release/felix/org.apache.felix.webconsole-4.8.10-debug.jar.asc
==============================================================================
--- release/felix/org.apache.felix.webconsole-4.8.10-debug.jar.asc (added)
+++ release/felix/org.apache.felix.webconsole-4.8.10-debug.jar.asc Sun Jul 23 
07:24:47 2023
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmS4v/cACgkQP89Sn/Ly
+egbccQ/8DP0yqdnPKqrai/RMeLElpXoV+ZDzym29zWd6KKs13DfEsrunNi1zrelJ
+SLqZVv037/1mDSmLLe5LNLNUsZOl7df8+FDBre7FZq8zWSxNnkhXXOg7reNr6lSC
+8xB68VOlzzYaCxQTDGBqoJyn3SGpha/bNhOem67QCNcorecaCwV8O3i3AhIGJv5I
+b5WbaKzKxKkaW5GET1XKpe6cgoMorJmS4ss2VSxDTGC87oLxGxaAxjCyesGuy7Ym
+kpqUOwxaC9kMmNnzIhvC6mrexgJxkm6L3WrqSgQhde+y+VD+UEtkoZ1tQVdca5bh
+xptYOBNNCVd/4+VZNZT4lJyV9igGGYJLzEXaCcPaFz3Ceem3l6OiEEHQqDQqGGhr
+VYQgXf9oDd2D7O73acxkUsEJEGRnAQp9dgtWZnlCntchFEgZjaN/qRISLAE3ibrT
+FM0X+MWxsfmHPqNa0vEqrynIkwfL7YX4Ju+V9nAYa9VQk4uyydvQAJs9pwAlDrGG
+ja9xdmvQwp7Tm1agShoXdaSkGZmxpSNojF6ajkAroDOpXCnWjw9+fk99uiScpMUQ
+Gufa7DtwGrkPHDkiuPWTYBKNw4qaY9k9bt56plcocknH3+hqrucf/l3ZYzVitpAw
+rNRcrXCbxD8rfss3HhGJcOzj5Xp59ke9WpeXqLpvLPW6UzaIJtI=
+=cvb+
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.webconsole-4.8.10-debug.jar.sha1
==============================================================================
--- release/felix/org.apache.felix.webconsole-4.8.10-debug.jar.sha1 (added)
+++ release/felix/org.apache.felix.webconsole-4.8.10-debug.jar.sha1 Sun Jul 23 
07:24:47 2023
@@ -0,0 +1 @@
+68819a168f04f33d84d4520072a6cadf403a122d
\ No newline at end of file

Added: release/felix/org.apache.felix.webconsole-4.8.10-debug.jar.sha512
==============================================================================
--- release/felix/org.apache.felix.webconsole-4.8.10-debug.jar.sha512 (added)
+++ release/felix/org.apache.felix.webconsole-4.8.10-debug.jar.sha512 Sun Jul 
23 07:24:47 2023
@@ -0,0 +1 @@
+3dce0d83be9350aef9737e78289ad6ec678ab490a109aeccb74342e3b7b8d7a5105344b986bbb50e71076b63341e1f5b1f20f3a3cd1ea96b47661139249e6404
  org.apache.felix.webconsole-4.8.10-debug.jar

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

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

Added: release/felix/org.apache.felix.webconsole-4.8.10-javadoc.jar.asc
==============================================================================
--- release/felix/org.apache.felix.webconsole-4.8.10-javadoc.jar.asc (added)
+++ release/felix/org.apache.felix.webconsole-4.8.10-javadoc.jar.asc Sun Jul 23 
07:24:47 2023
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmS4v/gACgkQP89Sn/Ly
+egavxg//easfzBjkc1gKl62AzNmmtSVQGqk1m7iU56CL9/JPg7NChDMrxPWFpY+Z
+yB/95dueOOaPjlKyRO+pLNVv2uG2euAmID57w/zizJ8mFSSdinjcuNWGEuiKtSWk
+nUtLy6uFfkhbttczpFEU7I1UQB6NuMSrERbPxLbvKAOqOTk0Wbx8e/VIgYc1UypT
+wRAZQ2TYcEcXQj1FW/c5KHEvcXkTQgCKKBx7c7pGSat0VnjLSzj0crBzfF7PC5Bi
+BnkhiJPVBndPEERocuRrfHTtESvhBQ3i68DTNuHP5yxucgm+m8RCpKvJMJpD3b9h
+Od+Xp5JPP4heClK7XGlYzC/4tk/rk9On8ADFFX9ZyhjHLatsSqIHRjzbu14hTSHG
+NMRx+ICmEjxYLbqy7Mfcs3inpMYOCNleeH67JCzd9tM7MKjSMEPtHi8p8jrDvDYD
+YaLXl4Rxl4LdNR+90vvlZ7CUNoXVPHCPgetk7SaxcgASBni4k7E0gCA9lz8zzpOD
+QjVWvVGjwIsuK9pbevNTW8gZc8ANZrSLK9kwRSPwV0jNyizzurSQTRA/ZVEjMyP4
+wZbUBM71sskBXwSBF/qhVfFpi1lxKfWlzviuiKfa6joJtp6wGt76+Lzil5CH+iar
+KU0x9nF7tn1HSlnm+BkdSKiP55RpRDj8dZcYNNW3kDVgyqvWktQ=
+=67BL
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.webconsole-4.8.10-javadoc.jar.sha1
==============================================================================
--- release/felix/org.apache.felix.webconsole-4.8.10-javadoc.jar.sha1 (added)
+++ release/felix/org.apache.felix.webconsole-4.8.10-javadoc.jar.sha1 Sun Jul 
23 07:24:47 2023
@@ -0,0 +1 @@
+d3f8b749996542c7d63f3d6bf0877477d6cc8eb0
\ No newline at end of file

Added: release/felix/org.apache.felix.webconsole-4.8.10-javadoc.jar.sha512
==============================================================================
--- release/felix/org.apache.felix.webconsole-4.8.10-javadoc.jar.sha512 (added)
+++ release/felix/org.apache.felix.webconsole-4.8.10-javadoc.jar.sha512 Sun Jul 
23 07:24:47 2023
@@ -0,0 +1 @@
+b80c6e3fb7ef64e6a18eac7f095e86e1f74b2ab4ccbbdb9bb56b10206212407cb6f012284273357128483e735fde8726db944dc1bae7130b600e56d8ff42d0ab
  org.apache.felix.webconsole-4.8.10-javadoc.jar

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

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

Added: 
release/felix/org.apache.felix.webconsole-4.8.10-source-release.tar.gz.asc
==============================================================================
--- release/felix/org.apache.felix.webconsole-4.8.10-source-release.tar.gz.asc 
(added)
+++ release/felix/org.apache.felix.webconsole-4.8.10-source-release.tar.gz.asc 
Sun Jul 23 07:24:47 2023
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmS4v/YACgkQP89Sn/Ly
+egabUxAArgP5AOwxtJ1FVakcOkb3btfNul/naBTZBoO8uckds22iCufBmEMoutnC
+b5pNHFy8CW8YBf+e0OdStRizSADThLdbMXKjLZunFnAAuHHSRoPA8YtGWJhxDfr9
+KYy9fAFmf4dI/9SSmvax0HdIDD9+04GXa3yaIyTwz54YV8uO9UdSfayjadDbw4Dy
+L7ywgKoUUSS43sSpix00JDDAlM5B6p8Rut3vsy9fKbhLOc2uY4/ISm3v8NOmJ46K
+I6uN/rvXI5eKOe2BbQ7rzZI+6zqnen1wX1XjJvMc+g+eXSkuB3L3+lbzwxlQys5a
+HBacL/PF49F61newz0N9luyXf9rYMOKh8A4xAwBbYUqmuYf2xqvS5//O1/aIplNv
+jkPvs3YkZb7ynYgZb7xKbHC/htQ4ZxCpPylnQP8N8l/zBKpKhW9bV2uDrS8dscO4
+b6tJn9klycFvjY2AfQT5S+I6G6vHGE8q/5PezBGNgzCZ/2Tx9aboFQAQZ3TW2sTL
+7042aHgGS0ISljTewMfoRxPSClVxpoL3zct0Ft5AHrJAR/zh0pro4wObh/CJEMWK
+WMm+NHabEGGBD+pJe0ch0p87bnUJoXhHF9qH/JttnQ8uJzOunAMLBfZSS1h5mMRu
+27WtvzoX5593SxoZrWhOMwWQifOuqpHlgMJqE98/wfNbzV4RNk0=
+=gyhB
+-----END PGP SIGNATURE-----

Added: 
release/felix/org.apache.felix.webconsole-4.8.10-source-release.tar.gz.sha1
==============================================================================
--- release/felix/org.apache.felix.webconsole-4.8.10-source-release.tar.gz.sha1 
(added)
+++ release/felix/org.apache.felix.webconsole-4.8.10-source-release.tar.gz.sha1 
Sun Jul 23 07:24:47 2023
@@ -0,0 +1 @@
+fa688ff7063dc740a50a6f1b94d2db26e938cb31
\ No newline at end of file

Added: 
release/felix/org.apache.felix.webconsole-4.8.10-source-release.tar.gz.sha512
==============================================================================
--- 
release/felix/org.apache.felix.webconsole-4.8.10-source-release.tar.gz.sha512 
(added)
+++ 
release/felix/org.apache.felix.webconsole-4.8.10-source-release.tar.gz.sha512 
Sun Jul 23 07:24:47 2023
@@ -0,0 +1 @@
+3c5009209c3bf2bddf971f189274866c42576a5e7213a029b83f7d96c3849221b82b6e062a4b795f478df6f1aa880702e68b94d179fdea95045847be4d9ecd39
  org.apache.felix.webconsole-4.8.10-source-release.tar.gz

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

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

Added: release/felix/org.apache.felix.webconsole-4.8.10-source-release.zip.asc
==============================================================================
--- release/felix/org.apache.felix.webconsole-4.8.10-source-release.zip.asc 
(added)
+++ release/felix/org.apache.felix.webconsole-4.8.10-source-release.zip.asc Sun 
Jul 23 07:24:47 2023
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmS4v/YACgkQP89Sn/Ly
+egYYlA/7BJB2z6J82JcUu+KmNeGo7dHAqqo6BJ0fAqS8rbI5HDjJtifCYoOIJCDk
+cobcrKLlF9Ybec8R4AP68zYUR2Trj4qB3v53mTTZzycwOIk6CQNnDL5zpTR1Mc/Z
+e2s8EWtYd7y+8JNPOGKt90LlL3sWCQ+thoJuXzWCnt5FR/LDzClDoAO4Hl73Fw4X
+UAVXcsh0QO5hvgIf8DI0O3UbWzdJbOZCr3wGSdhx8K9r0oKeNeEItYDxAGnuWXaj
+IzGmLVF7w7p0v8Rze0bhVwZD8jt/n2UxtBvy0+wRIGyjlvJT4KceF03SHKH6Ydil
++hef1ZxMf527P0aBi2oudiW2W6Ukl2iGImq1xrV1KYQeKgZuHsY+QUJejCEnAZ20
+kV8URV2fe1ohDff7QfZEwlL09KGotvqKV3XXZKuNV9Xla9uV/CXC06XW4kpjrESq
+bTAg7yY0Hh92J9sKxohMRRMcs6kZytjCK/LdXavY1oNoIm/1x412nbowzoAvIyxd
+7s9rsuLqdHUKXMwSPmmViDz+Jr1IbPvsBuFLVzk/q2loM58d4Ru39bcxVq/jCAum
+SM/biPdTMOBJqd2H+XrVAPkSCuP8AZoT2cH1zSdd8SXp5ahyY7kUMQwjeansim50
+bjOE7rxkSgAbHgSq+gBCYR0q2zTxCe6Px0IEAHOW95P0HGN4NDc=
+=amPW
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.webconsole-4.8.10-source-release.zip.sha1
==============================================================================
--- release/felix/org.apache.felix.webconsole-4.8.10-source-release.zip.sha1 
(added)
+++ release/felix/org.apache.felix.webconsole-4.8.10-source-release.zip.sha1 
Sun Jul 23 07:24:47 2023
@@ -0,0 +1 @@
+f3c8228f0ad2a2694e87eb254b1a8c84075c9967
\ No newline at end of file

Added: 
release/felix/org.apache.felix.webconsole-4.8.10-source-release.zip.sha512
==============================================================================
--- release/felix/org.apache.felix.webconsole-4.8.10-source-release.zip.sha512 
(added)
+++ release/felix/org.apache.felix.webconsole-4.8.10-source-release.zip.sha512 
Sun Jul 23 07:24:47 2023
@@ -0,0 +1 @@
+511be24b8f77e32dd6d3dacd1fcc0585aa451349cedc4cf051aee91c74522d2479354343b2b0e700f737ae681008508e201123964734fca1b5a146cb5c7ec7e7
  org.apache.felix.webconsole-4.8.10-source-release.zip

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

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

Added: release/felix/org.apache.felix.webconsole-4.8.10-sources.jar.asc
==============================================================================
--- release/felix/org.apache.felix.webconsole-4.8.10-sources.jar.asc (added)
+++ release/felix/org.apache.felix.webconsole-4.8.10-sources.jar.asc Sun Jul 23 
07:24:47 2023
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmS4v/cACgkQP89Sn/Ly
+egaqcw//Y9HKQOV4ZS7jy6QoBpDfrH1s8zWxNoi2wM+3rf9coIly2fdYXzOVwYUL
+lHSbl3asglSgNIZIjE4Grat8BPbVgP6LlxPyeApaVC2ondx9OAKnVUAdG3Q/D4SX
+/IwhOcRHP4VCy2AOGrmkYdypMWhBN0XvN357Y894wtUsZaTfU5kfFbgPnvIxqR5p
+nuaYK6Tyl+HBJA+ErwDmVjYn5OjRLb37E6a7XhYAMjg4XT5yjd5P18qrvj8alz+V
+IhiD3V0JKweIYnaOO27IqbjXXj32a80ViiFnnNhmlGfTUjVNLtNUEluxdIY6ADbH
+4DCKxbkLtMj4ljkSKK96xNMbZZAN1F8VlFIWDtUq7n7ijHV3XsR2LoCAYAd3tw0s
+Dm/DbebdWBBZ4O1OwNHwy6pdQfFOkHQCYs5f9y0a0TwdIUqnyf65C9XrC/yjt3FN
+6gBUuWd9D1Q8g2tGMvl+iz8EylR6os8zEWLb68l0LoEtIQwBOa+gLRCs/NSIKTgB
+Wb6vaT63n/7NJd54oQjkBRMAJLQyJlMl1CSQP2U2cxHhJPIwfGRPM+AHrHQJxrFX
+OsDdKGaE6xb+ddPMfWlY7EsXGKUx4mpPA8gDwKQMDL7pp+uNadEKNYhoL8CZ/7rs
+oFS6uOY4kk8Gvwa2EnunC+ruNouuP9EBh0pLAXNG4XbElFML7UM=
+=EMxW
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.webconsole-4.8.10-sources.jar.sha1
==============================================================================
--- release/felix/org.apache.felix.webconsole-4.8.10-sources.jar.sha1 (added)
+++ release/felix/org.apache.felix.webconsole-4.8.10-sources.jar.sha1 Sun Jul 
23 07:24:47 2023
@@ -0,0 +1 @@
+69b46445e495d0db8575fb208b87307aec8aeb08
\ No newline at end of file

Added: release/felix/org.apache.felix.webconsole-4.8.10-sources.jar.sha512
==============================================================================
--- release/felix/org.apache.felix.webconsole-4.8.10-sources.jar.sha512 (added)
+++ release/felix/org.apache.felix.webconsole-4.8.10-sources.jar.sha512 Sun Jul 
23 07:24:47 2023
@@ -0,0 +1 @@
+9b0a444ebc81e1d0b7cd576f6579e7f973532d53673bb75c69fe5452b86af4e66df22671252f1035968f54d43714abefcde0ed43c06eee6bda9104deb94523c5
  org.apache.felix.webconsole-4.8.10-sources.jar

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

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

Added: release/felix/org.apache.felix.webconsole-4.8.10.jar.asc
==============================================================================
--- release/felix/org.apache.felix.webconsole-4.8.10.jar.asc (added)
+++ release/felix/org.apache.felix.webconsole-4.8.10.jar.asc Sun Jul 23 
07:24:47 2023
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmS4v/YACgkQP89Sn/Ly
+ega28w/8DLATY9dswFqKph+ZvbbDMLuLykek+z2U8Xj2VUxp1kHMva3jXikIsIrx
+tvIossHwWDqoJKeU5drXTCvgtvcNzZspjeVAzvFoRY0lKoi/DG8ltPQg8Zz4ric6
+oBFuNzhVLtOlh3MLrulahDJ5Tc1t6kEN74D1g1FUQCXoMETHFxg3OtgihAh7EA8O
+HTKwywToJ9poP+xEyX3I2KfrrLSpsRQ4nOIREkv1+0MdqWjJNWj9fISv9CAQ4BbY
+tk65I+5ADImkxdHteM/81rdAEfE+O96a7KPzSLH4RicUcSHb5L9acMKnu8O6aKfT
+hmTvJvHqQ93ZCxzJzKE29gT4gTK3rACV9nqjbfe1ERJKDSoRPVmdywZbzZw6tMoq
+iLaA+4ZcM21XvMxoNIIDEKLTtl/aSdK5eDZlq1vO7H21AhvPrDx/ZYbYtck2gFde
+75IbSmChLu6I1IP/etku5ZAM6GqoYMY6bOtv0uJbLw79XnIZ7CSiLy2I0sCT4AzO
+3aKAx7W5LfP5qMuJDcAAYMnVdbFp69lAOWHz+r1MgmB5dEsSRbM0vrsvJKq6g0sv
+7wb1cSC7ukoz4oKynStZHh9muBY+pgzlsNOowOx+0B9nmpK1zfynMpHnfpTL2RFh
+znXXB8Dl4hfw/x2KJgkSMznDkQbYWHtZlmKBwq+TW6W4c7E08WI=
+=d9HK
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.webconsole-4.8.10.jar.sha1
==============================================================================
--- release/felix/org.apache.felix.webconsole-4.8.10.jar.sha1 (added)
+++ release/felix/org.apache.felix.webconsole-4.8.10.jar.sha1 Sun Jul 23 
07:24:47 2023
@@ -0,0 +1 @@
+32031149a3141138a6a3e7106e38c6131f799539
\ No newline at end of file

Added: release/felix/org.apache.felix.webconsole-4.8.10.jar.sha512
==============================================================================
--- release/felix/org.apache.felix.webconsole-4.8.10.jar.sha512 (added)
+++ release/felix/org.apache.felix.webconsole-4.8.10.jar.sha512 Sun Jul 23 
07:24:47 2023
@@ -0,0 +1 @@
+9f2fd214f53047facf1b8c6aede8ea086f376b8e09e36a0944f86b307761118233709032179a18ce32104b3724baf66f4f2399f8c0721936cce8984634494728
  org.apache.felix.webconsole-4.8.10.jar

Added: release/felix/org.apache.felix.webconsole-4.8.10.pom
==============================================================================
--- release/felix/org.apache.felix.webconsole-4.8.10.pom (added)
+++ release/felix/org.apache.felix.webconsole-4.8.10.pom Sun Jul 23 07:24:47 
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.10</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.10</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.1</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.10.pom.asc
==============================================================================
--- release/felix/org.apache.felix.webconsole-4.8.10.pom.asc (added)
+++ release/felix/org.apache.felix.webconsole-4.8.10.pom.asc Sun Jul 23 
07:24:47 2023
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEX9UUWovQMXqU3HcTP89Sn/LyegYFAmS4v/YACgkQP89Sn/Ly
+egbfKA//XRyZGVzVXUUcplJ6SN6WiWLqtUBP6FxgU1cAAXQiqPQLMCunV4RIScgZ
+xCfx5+iORKoQJPYAk3bZbFusH4wJIX6HIZs4vytE75BnclKuQ6WefO2NgQvWR1FW
+eTfhj5FwCPgzQhDUBbYJP9DfL2MU32NmdT/YoDZdMgnijXg/vPuLltrmvtkG1TtD
+EVKxJ2Kf8EfpRm4NNwk+V3KGttpl0Sc4pt0IM7p+eXaq3WDnkXJ76Y6Ec7egTQW7
+dQsbZSD03Y8UGQ0HAPuusEHCsRVXeG9dJwPQRfvX+wNrNG3BpgiwwH4/ng66mtEV
+HESkEUsK9WgSvTJ55ROEjPFGiMDGyldkTgRSptBnJ2ehI3RTTuo0Zsf9ogxB17ZJ
+QoxpJUnLfMPsaXq6lZVN6OMGHsNzl4BO8f0RXZvqypE//wdqh5WPFFU9mokzgO+w
+l9uXuyFXnwMICbIrTh+gcL7cubhh5XTZXTaiGnqUKmN7NA61QlRJBp/ETDtQv3+d
+QcY/cRiOjzABWGVG9pAYdV6WlDLGmgm8puo2WlTDwZUA8RHnRh9TBEGd8rZSkht2
+ZkmI+IFSmsKJe23dtoXWmi3rgUI7d7BhTAOsrsV2mwkfXYQtFX53QlC5OGuk9umo
+a2/z1W0BSrW4DjqB3bcBHzUQ35BghffsBvrJRgUYJlQSm4Tu9bU=
+=bRgx
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.webconsole-4.8.10.pom.sha1
==============================================================================
--- release/felix/org.apache.felix.webconsole-4.8.10.pom.sha1 (added)
+++ release/felix/org.apache.felix.webconsole-4.8.10.pom.sha1 Sun Jul 23 
07:24:47 2023
@@ -0,0 +1 @@
+2bd2ff02c0f13bf4d811f34a7465ade772e8c6c6
\ No newline at end of file

Added: release/felix/org.apache.felix.webconsole-4.8.10.pom.sha512
==============================================================================
--- release/felix/org.apache.felix.webconsole-4.8.10.pom.sha512 (added)
+++ release/felix/org.apache.felix.webconsole-4.8.10.pom.sha512 Sun Jul 23 
07:24:47 2023
@@ -0,0 +1 @@
+2206d1e9e47b3ae7b0b07b34121c6b95b4a9d9378e99bc4b206f269bfdaf2d06d64b4ab59ee6d3d478ac0f5b66a54009c268b5339f65a2436876403b309239cd
  org.apache.felix.webconsole-4.8.10.pom


Reply via email to