You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ss...@apache.org on 2021/12/10 16:21:16 UTC

svn commit: r51291 [2/2] - /release/sling/

Added: release/sling/org.apache.sling.testing.osgi-mock.parent-3.2.2.pom
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.parent-3.2.2.pom (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.parent-3.2.2.pom Fri Dec 10 16:21:15 2021
@@ -0,0 +1,177 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+  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/xsd/maven-4.0.0.xsd">
+
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.apache.sling</groupId>
+        <artifactId>sling-bundle-parent</artifactId>
+        <version>46</version>
+        <relativePath />
+    </parent>
+
+    <artifactId>org.apache.sling.testing.osgi-mock.parent</artifactId>
+    <version>3.2.2</version>
+    <packaging>pom</packaging>
+
+    <name>Apache Sling Testing OSGi Mock Parent</name>
+    <description>Mock implementation of selected OSGi APIs.</description>
+
+    <properties>
+        <project.build.outputTimestamp>2021-12-07T16:05:09Z</project.build.outputTimestamp>
+    </properties>
+
+    <dependencies>
+
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.annotation.versioning</artifactId>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.service.component.annotations</artifactId>
+            <scope>provided</scope>
+        </dependency>
+
+        <!-- Nullability annotations -->
+        <dependency>
+            <groupId>org.jetbrains</groupId>
+            <artifactId>annotations</artifactId>
+            <scope>provided</scope>
+        </dependency>
+
+    </dependencies>
+
+    <dependencyManagement>
+      <dependencies>
+
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.framework</artifactId>
+            <version>1.8.0</version>
+        </dependency>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.service.component</artifactId>
+            <version>1.4.0</version>
+        </dependency>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.service.cm</artifactId>
+            <version>1.6.0</version>
+        </dependency>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.service.event</artifactId>
+            <version>1.3.1</version>
+        </dependency>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.service.log</artifactId>
+            <version>1.3.0</version>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.commons.osgi</artifactId>
+            <version>2.4.0</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.commons</groupId>
+            <artifactId>commons-collections4</artifactId>
+            <version>4.1</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.commons</groupId>
+            <artifactId>commons-lang3</artifactId>
+            <version>3.6</version>
+        </dependency>
+        <dependency>
+            <groupId>commons-io</groupId>
+            <artifactId>commons-io</artifactId>
+            <version>2.5</version>
+        </dependency>
+
+        <dependency>
+            <groupId>org.mockito</groupId>
+            <artifactId>mockito-core</artifactId>
+            <version>3.7.0</version>
+        </dependency>
+        <dependency>
+            <groupId>org.mockito</groupId>
+            <artifactId>mockito-junit-jupiter</artifactId>
+            <version>3.7.0</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.testing.logging-mock</artifactId>
+            <version>2.0.0</version>
+        </dependency>
+
+      </dependencies>
+    </dependencyManagement>
+
+    <build>
+        <pluginManagement>
+            <plugins>
+
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-release-plugin</artifactId>
+                    <configuration>
+                        <autoVersionSubmodules>true</autoVersionSubmodules>
+                    </configuration>
+                </plugin>
+
+            </plugins>
+        </pluginManagement>
+    </build>
+
+   <profiles>
+        <profile>
+            <id>apache-release</id>
+            <build>
+                <plugins>
+                    <!-- Set runOnlyAtExecutionRoot=false to make sure each jar file get's it source-release.zip attachment -->
+                    <plugin>
+                        <groupId>org.apache.maven.plugins</groupId>
+                        <artifactId>maven-assembly-plugin</artifactId>
+                        <executions>
+                            <execution>
+                                <id>source-release-assembly</id>
+                                <configuration>
+                                    <runOnlyAtExecutionRoot>false</runOnlyAtExecutionRoot>
+                                </configuration>
+                            </execution>
+                        </executions>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
+    </profiles>
+
+  <scm>
+    <tag>org.apache.sling.testing.osgi-mock.reactor-3.2.2</tag>
+    <connection>scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-testing-osgi-mock.git</connection>
+    <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-testing-osgi-mock.git</developerConnection>
+    <url>https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-testing-osgi-mock.git</url>
+  </scm>
+</project>

Added: release/sling/org.apache.sling.testing.osgi-mock.parent-3.2.2.pom.asc
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.parent-3.2.2.pom.asc (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.parent-3.2.2.pom.asc Fri Dec 10 16:21:15 2021
@@ -0,0 +1,11 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQEcBAABCgAGBQJhr4aGAAoJEM4rf/Z1146SjD8IAOdhNGAc9lzzazEgzkmm7JuL
+h6tp0QxKbGInm27otwQV1Up3rHwlc1FyY7HD0U2i5UuqMCG2OCnYgcw62EIzk9OB
+kFeJ9BiTroW4fEBHblrQYq8Bfia7pkqLAn9F2iBQKjfI9+MMeMR4T2WDwjz77blg
+So0psUvZqllOs7zGC+IUg6WjaFq9Wd0Wk+gRVpjgGD+4M3xfAFJrf+N4DkpFCjkG
+NL6bogP5AYMKGoEkudLROUeXcUJ+quZPM5YDTJ3CBt6hnp8MQwI/fAQzg0mX8tUA
+hjeXltJjdpPWCyYWtn5x19vODfVghJMAEQlrwkUcAhId4dMbjDFboPKIo7JuOm0=
+=QQBB
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.testing.osgi-mock.parent-3.2.2.pom.md5
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.parent-3.2.2.pom.md5 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.parent-3.2.2.pom.md5 Fri Dec 10 16:21:15 2021
@@ -0,0 +1 @@
+2b9c2bac398b5c3e4c7c8ed640902b71
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.osgi-mock.parent-3.2.2.pom.sha1
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.parent-3.2.2.pom.sha1 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.parent-3.2.2.pom.sha1 Fri Dec 10 16:21:15 2021
@@ -0,0 +1 @@
+5c64e24c934870e589625fb8af26cf3571ec7348
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2-javadoc.jar.asc
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2-javadoc.jar.asc (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2-javadoc.jar.asc Fri Dec 10 16:21:15 2021
@@ -0,0 +1,11 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQEcBAABCgAGBQJhr4aUAAoJEM4rf/Z1146S4ZoIANLxw/ASGl+W8LKTKfyWNx6d
+4vL+n+v/SHWiLb0qSpWEPtfBElnqq3hu8BHcwEF/jgMg/ACDiEyfQExQoju2hTJi
+ZjqOfax/oyFQF9BkGYr7uIsfT3n+D3Na6oYAdzQy7WM6zRpnNanP/U/hh33fab5U
+eRpImeLPMv3A/6nC40al6+nLgE5Qbe/prxonnlDJrhhwnamPw1Z+csv3YZtxOF5H
+V4+g8EywMpO4FKDOd2KxCIbOIZcSSSoozx5SyjuZMc6JEM+/qJh8y/Px2Uc9R341
+wjAodhpy0ACH90d3rDercd1ueS3TdAD1cq3FHuL3L1OOX4emFbA56gip7q6Lj5Y=
+=SJ2j
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2-javadoc.jar.md5
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2-javadoc.jar.md5 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2-javadoc.jar.md5 Fri Dec 10 16:21:15 2021
@@ -0,0 +1 @@
+a5a37e39da3bf8697e94d4cbd9aa5ae0
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2-javadoc.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2-javadoc.jar.sha1 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2-javadoc.jar.sha1 Fri Dec 10 16:21:15 2021
@@ -0,0 +1 @@
+7d2f884bbbd9008970f501022b994c7a6d4d29f8
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2-source-release.zip
==============================================================================
Binary file - no diff available.

Propchange: release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2-source-release.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Propchange: release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2-source-release.zip
------------------------------------------------------------------------------
    svn:needs-lock = *

Added: release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2-source-release.zip.asc
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2-source-release.zip.asc (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2-source-release.zip.asc Fri Dec 10 16:21:15 2021
@@ -0,0 +1,11 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQEcBAABCgAGBQJhr4aSAAoJEM4rf/Z1146ScckIAJ27cBsuJqCmWncr81kgHZNw
+aJ4bPVTnOFIO6nimybV5J1RFl7X/BltEGGjf3woVKu3dG3jri6OJ6RJYbuIUn27i
+a3KRdN9mqPNZyEfVidnxw9E6uZhgarG3mDdMlNRC5i7nnD1lSAKfFqirSGnKI6OF
+iExOd3DR7FC8c2HqgUgVDsImGR8tO6w50isV0ucchQ6I2hJFRgnXjI5IC+IYRvGp
+xrNq00glm6eyt+YNh8negkIFJdpY3u6hxmTKjavJNnskV/g4mRj1s22C5yBNKUjv
+yUs0qeRRGJw1tOt4LLyjh4xri5+4tuiIqIb5ETvHoXbpdG2Ak5vBbKwl4s4ldRE=
+=dp0Y
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2-source-release.zip.md5
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2-source-release.zip.md5 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2-source-release.zip.md5 Fri Dec 10 16:21:15 2021
@@ -0,0 +1 @@
+ade0a6a198cae4d398aef3cf168f415e
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2-source-release.zip.sha1
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2-source-release.zip.sha1 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2-source-release.zip.sha1 Fri Dec 10 16:21:15 2021
@@ -0,0 +1 @@
+2370a797f3fd04813fd206b925468d6909459285
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2-source-release.zip.sha512
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2-source-release.zip.sha512 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2-source-release.zip.sha512 Fri Dec 10 16:21:15 2021
@@ -0,0 +1 @@
+9ad7998f93197ff973727c14df404bebae3f3a01e06d7bda73cff2c3e1feb13528b990cde69f9dbac0e4a5b700f60eeddc567d65e938526e45305c6abaf089c1
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2-source-release.zip.sha512.md5
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2-source-release.zip.sha512.md5 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2-source-release.zip.sha512.md5 Fri Dec 10 16:21:15 2021
@@ -0,0 +1 @@
+39ffe2db60032597a466141b34584c89
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2-source-release.zip.sha512.sha1
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2-source-release.zip.sha512.sha1 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2-source-release.zip.sha512.sha1 Fri Dec 10 16:21:15 2021
@@ -0,0 +1 @@
+60b9a14ab214095f821d503c5be299080c179a00
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2-sources.jar.asc
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2-sources.jar.asc (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2-sources.jar.asc Fri Dec 10 16:21:15 2021
@@ -0,0 +1,11 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQEcBAABCgAGBQJhr4aTAAoJEM4rf/Z1146SOusH/RpN7VdHQqZyBY3zro1yDxDn
+lUCIGBWDDyynD6fBqtZc7BYUEqrOnhIOBLVfbQwNyiHp+r4jSkheBPZMHF4vA5JS
+QAIo9wKlaJPcyqJn3DXC/vdD7F/qNRWooGwIDkiI7oWuysHolRtnL4ktXB7HzX24
+Q7/PDvWFIQrDpMUXW1/RmECC7QND9bcxeYmfusuhA453MjO9y+M4MTHH5H17Pfbx
+2VfiTxTzBuA/qVjWTZCq/WH2MnmPWEVNBeu5qyG/4HkUnE+Eo4drMMEBox9w5ggV
+05HLAXj7jWWs8qkhyS8oAzQt9JR7WydVC4byriLUyWZaxxUyiFe3aw6oCgGzvcU=
+=/JjJ
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2-sources.jar.md5
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2-sources.jar.md5 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2-sources.jar.md5 Fri Dec 10 16:21:15 2021
@@ -0,0 +1 @@
+2d148885f3ba5b890c2868552c470468
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2-sources.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2-sources.jar.sha1 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2-sources.jar.sha1 Fri Dec 10 16:21:15 2021
@@ -0,0 +1 @@
+1ade491abda9b163776a5bdb1fc0159ac8f01263
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2.jar
==============================================================================
Binary file - no diff available.

Propchange: release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2.jar.asc
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2.jar.asc (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2.jar.asc Fri Dec 10 16:21:15 2021
@@ -0,0 +1,11 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQEcBAABCgAGBQJhr4aSAAoJEM4rf/Z1146SAakH/369wEGu1EEc32aiM506PYLy
+J5s8aPs7M95re+bEuIxXWyK7LJ5HuVHn7bUNlPhClWFBjPZ0Ldsek8VqE/cDKTI7
++FzCFNtNE6l5ZqiJy1piN6JNiL0YUVmUv/j9lNLYatnycHbm9kznDfB59e+RyncE
+eVqwop0dywBPVltLhVS7dn+BfMHv2dKCZ7wq4jqLa/MvDiSCt0l45t8Cv/pF9gO8
+G29VIrIHeXKoG+9GEMD6IDn+JHbm30WVO/Gk5S6JMMPjEt+3si7lVnpZi3sE7JW+
+NjK/bx9Ey7H3EbueRp+cDui/fmMBnTIjoIPaj0773HAe2Vm4yYrg7kCTPiJwJIk=
+=LIDJ
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2.jar.md5
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2.jar.md5 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2.jar.md5 Fri Dec 10 16:21:15 2021
@@ -0,0 +1 @@
+0142679759fec153bdb413c6c9156a95
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2.jar.sha1 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2.jar.sha1 Fri Dec 10 16:21:15 2021
@@ -0,0 +1 @@
+8277a99601cdb641acdd442c2594e60f8137bb32
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2.pom
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2.pom (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2.pom Fri Dec 10 16:21:15 2021
@@ -0,0 +1,68 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+  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/xsd/maven-4.0.0.xsd">
+
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.apache.sling</groupId>
+        <artifactId>org.apache.sling.testing.osgi-mock.parent</artifactId>
+        <version>3.2.2</version>
+        <relativePath>../parent/pom.xml</relativePath>
+    </parent>
+
+    <artifactId>org.apache.sling.testing.osgi-mock.test-services</artifactId>
+    <packaging>jar</packaging>
+
+    <name>Apache Sling Testing OSGi Mock Test Services</name>
+    <description>
+      This module is only used in the unit tests of osgi-mock.core.
+      The sample OSGi components and services are not part of the osgi-mock test source to allow bnd plugin to auto-generate the metadata for them.
+    </description>
+    
+    <dependencies>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.framework</artifactId>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.service.component</artifactId>
+            <scope>compile</scope>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>biz.aQute.bnd</groupId>
+                <artifactId>bnd-maven-plugin</artifactId>
+            </plugin>
+            <plugin>
+                <groupId>biz.aQute.bnd</groupId>
+                <artifactId>bnd-baseline-maven-plugin</artifactId>
+                <configuration>
+                  <skip>true</skip>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
+</project>

Added: release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2.pom.asc
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2.pom.asc (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2.pom.asc Fri Dec 10 16:21:15 2021
@@ -0,0 +1,11 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQEcBAABCgAGBQJhr4aSAAoJEM4rf/Z1146SrVIIAMFci7LugZJd86UGir9dLCoz
+qsv4rTYj4uK5HZO1S4b2bE5m3sejXME2KJx59KKqaSmgKYhXSVA4YbRlBUb/Be3p
+Xte+ue6NTbV9jcEE+zR9mAvrCb1XKV9CVE2PUx0JuvG2MwCFEMK50EmR9tHdfpOq
+llp3RO2/WVscdte2Y/XoLC5KgZl1Tf1q/KYQCrLdxiK/bpaUehg5DPgplsCoavSd
+9IMdVW1lixLVIA1UXmMlWYQPfRiUQpUPhFYeW9oLmjxfxQUuJRcdzZzvawwL205K
+PA7/df/zusESx/TSDR5RZ151bNIB013JZwUypWC5F+h9Qr+I0Lde8PfodNvhEpY=
+=h0QZ
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2.pom.md5
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2.pom.md5 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2.pom.md5 Fri Dec 10 16:21:15 2021
@@ -0,0 +1 @@
+04771c88bf546d490f6c40c8d982d6f4
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2.pom.sha1
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2.pom.sha1 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.2.pom.sha1 Fri Dec 10 16:21:15 2021
@@ -0,0 +1 @@
+2d996d303464a376aad5c223e858d30ae1c99961
\ No newline at end of file