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/02 19:45:34 UTC

svn commit: r51179 [2/3] - /release/sling/

Added: release/sling/org.apache.sling.testing.osgi-mock.core-3.2.0.pom
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.core-3.2.0.pom (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.core-3.2.0.pom Thu Dec  2 19:45:32 2021
@@ -0,0 +1,261 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<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">
+  <parent>
+    <artifactId>org.apache.sling.testing.osgi-mock.parent</artifactId>
+    <groupId>org.apache.sling</groupId>
+    <version>3.2.0</version>
+    <relativePath>../parent/pom.xml</relativePath>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <artifactId>org.apache.sling.testing.osgi-mock.core</artifactId>
+  <name>Apache Sling Testing OSGi Mock Core</name>
+  <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-jar-plugin</artifactId>
+        <executions>
+          <execution>
+            <goals>
+              <goal>test-jar</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+      <plugin>
+        <groupId>biz.aQute.bnd</groupId>
+        <artifactId>bnd-maven-plugin</artifactId>
+      </plugin>
+      <plugin>
+        <groupId>biz.aQute.bnd</groupId>
+        <artifactId>bnd-baseline-maven-plugin</artifactId>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.rat</groupId>
+        <artifactId>apache-rat-plugin</artifactId>
+        <configuration>
+          <excludes>
+            <exclude>src/test/resources/OSGI-INF/*</exclude>
+            <exclude>src/test/resources/META-INF/test.txt</exclude>
+            <exclude>src/test/resources/bundleData/nested/first.txt</exclude>
+            <exclude>src/test/resources/bundleData/nested/second.txt</exclude>
+            <exclude>dependency-reduced-pom.xml</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+      <plugin>
+        <artifactId>maven-shade-plugin</artifactId>
+        <executions>
+          <execution>
+            <phase>package</phase>
+            <goals>
+              <goal>shade</goal>
+            </goals>
+            <configuration>
+              <createSourcesJar>true</createSourcesJar>
+              <shadeSourcesContent>true</shadeSourcesContent>
+              <artifactSet>
+                <includes>
+                  <include>org.apache.felix:org.apache.felix.framework</include>
+                  <include>org.apache.felix:org.apache.felix.scr</include>
+                </includes>
+              </artifactSet>
+              <relocations>
+                <relocation>
+                  <pattern>org.apache.felix.framework</pattern>
+                  <shadedPattern>osgimock.org.apache.felix.framework</shadedPattern>
+                </relocation>
+                <relocation>
+                  <pattern>org.apache.felix.scr.impl</pattern>
+                  <shadedPattern>osgimock.org.apache.felix.scr.impl</shadedPattern>
+                </relocation>
+              </relocations>
+              <filters>
+                <filter>
+                  <artifact>org.apache.felix:org.apache.felix.framework</artifact>
+                  <includes>
+                    <include>org/apache/felix/framework/**</include>
+                  </includes>
+                </filter>
+                <filter>
+                  <artifact>org.apache.felix:org.apache.felix.scr</artifact>
+                  <includes>
+                    <include>org/apache/felix/scr/impl/inject/Annotations*</include>
+                    <include>org/apache/felix/scr/impl/helper/Coercions*</include>
+                  </includes>
+                </filter>
+              </filters>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+  <dependencies>
+    <dependency>
+      <groupId>org.osgi</groupId>
+      <artifactId>org.osgi.framework</artifactId>
+      <version>1.8.0</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.osgi</groupId>
+      <artifactId>org.osgi.service.component</artifactId>
+      <version>1.4.0</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.osgi</groupId>
+      <artifactId>org.osgi.service.cm</artifactId>
+      <version>1.6.0</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.osgi</groupId>
+      <artifactId>org.osgi.service.event</artifactId>
+      <version>1.3.1</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.osgi</groupId>
+      <artifactId>org.osgi.service.log</artifactId>
+      <version>1.3.0</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.sling</groupId>
+      <artifactId>org.apache.sling.commons.osgi</artifactId>
+      <version>2.4.0</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-collections4</artifactId>
+      <version>4.1</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-lang3</artifactId>
+      <version>3.6</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>commons-io</groupId>
+      <artifactId>commons-io</artifactId>
+      <version>2.5</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-api</artifactId>
+      <version>1.7.25</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.reflections</groupId>
+      <artifactId>reflections</artifactId>
+      <version>0.10.2</version>
+      <scope>compile</scope>
+      <exclusions>
+        <exclusion>
+          <artifactId>jsr305</artifactId>
+          <groupId>com.google.code.findbugs</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>dom4j</artifactId>
+          <groupId>dom4j</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>gson</artifactId>
+          <groupId>com.google.code.gson</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>servlet-api</artifactId>
+          <groupId>javax.servlet</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>slf4j-simple</artifactId>
+          <groupId>org.slf4j</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>jboss-vfs</artifactId>
+          <groupId>org.jboss</groupId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+    <dependency>
+      <groupId>org.mockito</groupId>
+      <artifactId>mockito-core</artifactId>
+      <version>3.7.0</version>
+      <scope>test</scope>
+      <exclusions>
+        <exclusion>
+          <artifactId>byte-buddy</artifactId>
+          <groupId>net.bytebuddy</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>byte-buddy-agent</artifactId>
+          <groupId>net.bytebuddy</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>objenesis</artifactId>
+          <groupId>org.objenesis</groupId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>4.13.2</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.hamcrest</groupId>
+      <artifactId>hamcrest-core</artifactId>
+      <version>1.3</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.google.guava</groupId>
+      <artifactId>guava</artifactId>
+      <version>15.0</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.sling</groupId>
+      <artifactId>org.apache.sling.testing.logging-mock</artifactId>
+      <version>2.0.0</version>
+      <scope>test</scope>
+      <exclusions>
+        <exclusion>
+          <artifactId>slf4j-simple</artifactId>
+          <groupId>org.slf4j</groupId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.sling</groupId>
+      <artifactId>org.apache.sling.testing.osgi-mock.test-services</artifactId>
+      <version>3.2.0</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.osgi</groupId>
+      <artifactId>org.osgi.annotation.versioning</artifactId>
+      <version>1.1.1</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.osgi</groupId>
+      <artifactId>org.osgi.service.component.annotations</artifactId>
+      <version>1.4.0</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.jetbrains</groupId>
+      <artifactId>annotations</artifactId>
+      <version>16.0.2</version>
+      <scope>provided</scope>
+    </dependency>
+  </dependencies>
+</project>

Added: release/sling/org.apache.sling.testing.osgi-mock.core-3.2.0.pom.asc
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.core-3.2.0.pom.asc (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.core-3.2.0.pom.asc Thu Dec  2 19:45:32 2021
@@ -0,0 +1,11 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQEcBAABCgAGBQJhpQkOAAoJEM4rf/Z1146SdvwIANwjJ8Jv/Cw0GuRmwHBDTQ/3
+4U51FiFcwK8ve+sSldP/MnX8jz9R3taz2Lj+ZN0IBk98gFm+jqKJqD7IX9qxM+Ns
+w9GOuUJNGvETYO0s/Ygnw4AdzNm/sZ9F8Q5p27Q7PCvf/nT12FWdk+WOwkQvQRor
+CyKEPRWwdHhxIxNXNdvCRikPjoJFy0gTap+4YgMfVJbI7PU2xGsYzhYKpRLcm5Jl
+zjZzlcyI1lQmpQDm+Mu+t5555EeH+ROogdjxfQYbpztul7Nwy/l2DcyFX3PBWozc
+jC/I6SUDjekq+tBFn/T3Y7FVWrBjqdiyRgi3eGyUu4ZK3/z+iL8YnEnpfPI59gU=
+=GgiJ
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.testing.osgi-mock.core-3.2.0.pom.md5
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.core-3.2.0.pom.md5 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.core-3.2.0.pom.md5 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+e9d6ac847acc7020f3f2344bcbb17d12
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.osgi-mock.core-3.2.0.pom.sha1
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.core-3.2.0.pom.sha1 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.core-3.2.0.pom.sha1 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+6a7a386d62673395fa05916ea789257d97f9c713
\ No newline at end of file

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

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

Added: release/sling/org.apache.sling.testing.osgi-mock.junit4-3.2.0-javadoc.jar.asc
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.junit4-3.2.0-javadoc.jar.asc (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.junit4-3.2.0-javadoc.jar.asc Thu Dec  2 19:45:32 2021
@@ -0,0 +1,11 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQEcBAABCgAGBQJhpQkeAAoJEM4rf/Z1146SjTMIANhm08krGCfPL/IPUmhJt8e4
+oDA+MfqPnPfkxIYTDrqAuOTSAbYrJ3HPmMXr5HLXbqkCAd3oXVMazIR0O2MH1cpl
+T33SoVpd2m/U9kLW3AE8h8HVeOmTm+UHrQPO+Dvt8R2U8MP+O/ZEDQ4gJCSfPvmQ
+X8PaRLLXmRlVEoqg9Op1Bw8q+1WCLR8Z+Qcix1wvfEnqKxoSu1LgC3qqg96fHuwu
+10Wqll8rclBNjnXAPljLDklpNrxZI2q0YG2ZrIA1Oa1ngYCQZbxFrYGSIHT4Dx9u
+ps9HmWi57+MRXc0LS1pPQFWfBTiABzDoNXHhoSdtefFTkg2l+to9lRmxxouCAJA=
+=f24Q
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.testing.osgi-mock.junit4-3.2.0-javadoc.jar.md5
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.junit4-3.2.0-javadoc.jar.md5 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.junit4-3.2.0-javadoc.jar.md5 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+cf0546dec74b993c05ab50bffdfecba8
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.osgi-mock.junit4-3.2.0-javadoc.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.junit4-3.2.0-javadoc.jar.sha1 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.junit4-3.2.0-javadoc.jar.sha1 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+e188ff03d871fbb3b3a6cba47ad4cc483a8aba65
\ No newline at end of file

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

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

Propchange: release/sling/org.apache.sling.testing.osgi-mock.junit4-3.2.0-source-release.zip
------------------------------------------------------------------------------
    svn:needs-lock = *

Added: release/sling/org.apache.sling.testing.osgi-mock.junit4-3.2.0-source-release.zip.asc
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.junit4-3.2.0-source-release.zip.asc (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.junit4-3.2.0-source-release.zip.asc Thu Dec  2 19:45:32 2021
@@ -0,0 +1,11 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQEcBAABCgAGBQJhpQkdAAoJEM4rf/Z1146S8CwH/1DqabACFYRAQBz0Go1xixlG
+mI+PykSp7sp1Y20+9acixtK3ZB0apZ+uoEYZbqpto8f4LooM50pid8kejUzD1pG0
+I0lw/IPef2Auf9n+/BKhhkEnJT6bU0e1EnT4CkEjNJp81XqzbJ1TYsVVH84Am2+C
+jMsBFPuJHvPOtRKBDfVZv1AiAVSwq/TKQZaP6AoFkp4aD072UFQObPDEgAdVXeae
+3aO1eBOrrmqPUNQDAyEEn+VE0K5YtUHpBoP71kSOXWzO1cq1IF15Yu9mPtjYRBx5
+L8HcK8h6ghPVXOel2FaFe45uiKGQp9E++VmWqCAkwG2HUsdB9sJDdpiAnycOAzk=
+=oYiC
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.testing.osgi-mock.junit4-3.2.0-source-release.zip.md5
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.junit4-3.2.0-source-release.zip.md5 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.junit4-3.2.0-source-release.zip.md5 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+1d18860c297232d332c1051353b9527e
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.osgi-mock.junit4-3.2.0-source-release.zip.sha1
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.junit4-3.2.0-source-release.zip.sha1 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.junit4-3.2.0-source-release.zip.sha1 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+d4da05efafc390d37379afea1fd319d7676facc5
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.osgi-mock.junit4-3.2.0-source-release.zip.sha512
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.junit4-3.2.0-source-release.zip.sha512 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.junit4-3.2.0-source-release.zip.sha512 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+7781291f2d7b742873b9864ffbf0ef72063b5ed7d1183dca1e2eb06ead333d5499bdc92053e85536f8ccb9143aa43e45470e892a8b8a05b80b1df31053ac814c
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.osgi-mock.junit4-3.2.0-source-release.zip.sha512.md5
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.junit4-3.2.0-source-release.zip.sha512.md5 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.junit4-3.2.0-source-release.zip.sha512.md5 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+d446a438b110679c9fcce77e7eb26413
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.osgi-mock.junit4-3.2.0-source-release.zip.sha512.sha1
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.junit4-3.2.0-source-release.zip.sha512.sha1 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.junit4-3.2.0-source-release.zip.sha512.sha1 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+9c9d020b3e94bb5cd3f338b4bce494045b2c4cad
\ No newline at end of file

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

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

Added: release/sling/org.apache.sling.testing.osgi-mock.junit4-3.2.0-sources.jar.asc
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.junit4-3.2.0-sources.jar.asc (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.junit4-3.2.0-sources.jar.asc Thu Dec  2 19:45:32 2021
@@ -0,0 +1,11 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQEcBAABCgAGBQJhpQkeAAoJEM4rf/Z1146Smi0H/2gfC8N9llZzKN2vDiaEmfZX
+QDSeFGWXYG1FpXRJxTx23r+UkPJrVP1qVhr6BJssrUgdjD0MaMYzvoEbfWB5JCK6
++dCH+LZRW2KC8GDEdN0AW2I6YUK2U5g6vVkUsm2Fvx2DenIpkIHalpOdoS4y5Ef0
+fWyoNekRSeCxbot0F9QfIZQzt5pJ+lUYEcgwVHuKPDL/FCabQHsSbEP2tgXMsI0Q
+6kgVfjI87IVllRmY0w2bzgVBircgdWBGI4X/RE/7/GOZCjzjrjJM6436VbcSIGG/
+PlgcQ1g2RN6VcUnHcvjNmiP3g8u6+dE3c1J10hVC1rT02MDXG9+LqShJKc8BCZk=
+=rkDm
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.testing.osgi-mock.junit4-3.2.0-sources.jar.md5
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.junit4-3.2.0-sources.jar.md5 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.junit4-3.2.0-sources.jar.md5 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+2abad9b42f3bec920a9d5ea5e0734e8c
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.osgi-mock.junit4-3.2.0-sources.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.junit4-3.2.0-sources.jar.sha1 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.junit4-3.2.0-sources.jar.sha1 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+1b46565117cb5ac28f8e9b7d23f36033e693c268
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.osgi-mock.junit4-3.2.0.jar
==============================================================================
Binary file - no diff available.

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

Added: release/sling/org.apache.sling.testing.osgi-mock.junit4-3.2.0.jar.asc
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.junit4-3.2.0.jar.asc (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.junit4-3.2.0.jar.asc Thu Dec  2 19:45:32 2021
@@ -0,0 +1,11 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQEcBAABCgAGBQJhpQkcAAoJEM4rf/Z1146SKqsH/105AIh4b3ia8j7wWs2jMovg
+/UvkpG5vNOhiJAx/QBBewn0L6+COvn6bayCo1fUeasSPuTOYbwt/GCB2ERZbpkQa
+LGdjvw6vN1TK3GAEj3Dxbayc2OEYm8RUu0agHsRWwZ+UG/qjlsHB5tDyjNrvh+rM
+dKshDrrZ4AZ6pHQu1FO82GFGUW6v6hU9XXPf96pj1lXZ7lFrlfXz9xWyt/wlo3a3
+QdA758PoWfktWi9gJGh+XfnlsYbZsVDSEOiDyPFiDxihemGOE/yu0RamtviVkh7f
+d9TKIHpYRmAkegcdaBQONKrmbpbqZQMK68E1U+QnHu7dVEwEUvjadcKqA7U+FQI=
+=Cdnn
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.testing.osgi-mock.junit4-3.2.0.jar.md5
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.junit4-3.2.0.jar.md5 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.junit4-3.2.0.jar.md5 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+1a88926671ebfa1e295c1a7eb218c740
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.osgi-mock.junit4-3.2.0.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.junit4-3.2.0.jar.sha1 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.junit4-3.2.0.jar.sha1 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+3ba0256261d5bd78eaa0f787a1dee1e3ca6e50d1
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.osgi-mock.junit4-3.2.0.pom
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.junit4-3.2.0.pom (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.junit4-3.2.0.pom Thu Dec  2 19:45:32 2021
@@ -0,0 +1,84 @@
+<?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.0</version>
+        <relativePath>../parent/pom.xml</relativePath>
+    </parent>
+
+    <artifactId>org.apache.sling.testing.osgi-mock.junit4</artifactId>
+    <packaging>jar</packaging>
+
+    <name>Apache Sling Testing OSGi Mock JUnit 4</name>
+
+    <dependencies>
+
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.testing.osgi-mock.core</artifactId>
+            <version>3.2.0</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.testing.osgi-mock.core</artifactId>
+            <version>3.2.0</version>
+            <classifier>tests</classifier>
+            <scope>test</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>org.mockito</groupId>
+            <artifactId>mockito-core</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.testing.logging-mock</artifactId>
+            <scope>test</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>
+            </plugin>
+
+        </plugins>
+    </build>
+
+</project>

Added: release/sling/org.apache.sling.testing.osgi-mock.junit4-3.2.0.pom.asc
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.junit4-3.2.0.pom.asc (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.junit4-3.2.0.pom.asc Thu Dec  2 19:45:32 2021
@@ -0,0 +1,11 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQEcBAABCgAGBQJhpQkcAAoJEM4rf/Z1146SZw0H/Avf9nIQbh0mQo3B7ClTFPfc
+euxjK0L6v7w3L/2JpDNBAJfGkYA/yMw+iPSrIP/f37YRiNa+MSpPDGnhPGFUuBhS
+HL+rYAkrZe+tKt2w0mSZ8Ar/OfZdCA8tGi/HNkogJ9M/NXROn9p3iA7VNGosD73A
+ZXzO41HUY4ZuIT/GNq8j8uOiqv28My2sJfxSpMZ6haKZDJ1F6F9+I02DQE6bomcA
+8QYEflJQ6eaWMnk0OlMuYcZBXtpFjy1bAMU0TaBlMnQIuFvvCVU2LpxM0wGWoILa
+eWs2xhuos8+YDlD561Ly7PkUNeYl+nuZSukxTs1aFc5blgW9nOw2Com0VQM1Fqo=
+=fqFG
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.testing.osgi-mock.junit4-3.2.0.pom.md5
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.junit4-3.2.0.pom.md5 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.junit4-3.2.0.pom.md5 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+f945b3d5698df3a0c1094ec4ca61cabe
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.osgi-mock.junit4-3.2.0.pom.sha1
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.junit4-3.2.0.pom.sha1 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.junit4-3.2.0.pom.sha1 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+2d8dfb477c3a5bb44a4ea43cf66f93e8492c1d4a
\ No newline at end of file

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

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

Added: release/sling/org.apache.sling.testing.osgi-mock.junit5-3.2.0-javadoc.jar.asc
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.junit5-3.2.0-javadoc.jar.asc (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.junit5-3.2.0-javadoc.jar.asc Thu Dec  2 19:45:32 2021
@@ -0,0 +1,11 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQEcBAABCgAGBQJhpQkpAAoJEM4rf/Z1146SOhMH/1dikW9I7minkjF7d6LSlm3r
+WMcZgUszd5bKbVPfhRSSEVUd35f+5kB5gPgNqvDyBnVLYvPZpDfnzWx79Qb05TpD
+HkZnX0SdcKpY97tp40uhhtTxkhLNdNazyGStPn2X1cIZEZSEsnLsL0UAJUuTTf2U
+0krc1Z1M0hpSvF9aCG/us5lYAhzzG/Ew+0InnoLARwEqkDoLClgV8U4QH/UzZSj3
+cuR2vRxWGhCRhvNlpz3nFjGqwlQOjZ81kWFtKRFhjl2tVLkC0B1WZ/mX8PfMK5DZ
+8FKkf0kjZt7+kae6RoEixfkPaLCI8o0vN4yh/ZTbzsBnBuvnzu0WvVcAikAYf5g=
+=sFTF
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.testing.osgi-mock.junit5-3.2.0-javadoc.jar.md5
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.junit5-3.2.0-javadoc.jar.md5 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.junit5-3.2.0-javadoc.jar.md5 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+5ab4b914074c1a53ff69c1a33786f5cf
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.osgi-mock.junit5-3.2.0-javadoc.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.junit5-3.2.0-javadoc.jar.sha1 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.junit5-3.2.0-javadoc.jar.sha1 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+3905e54308da11ea07d22d7ecd03ef5ca3a50d80
\ No newline at end of file

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

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

Propchange: release/sling/org.apache.sling.testing.osgi-mock.junit5-3.2.0-source-release.zip
------------------------------------------------------------------------------
    svn:needs-lock = *

Added: release/sling/org.apache.sling.testing.osgi-mock.junit5-3.2.0-source-release.zip.asc
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.junit5-3.2.0-source-release.zip.asc (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.junit5-3.2.0-source-release.zip.asc Thu Dec  2 19:45:32 2021
@@ -0,0 +1,11 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQEcBAABCgAGBQJhpQkoAAoJEM4rf/Z1146Sh7AH/j7CSSJXNQ648ZR6qWRzzKIg
+KlVFwol+8ts5Q5SZd//uW5PdvVbwmAXOergQGg7kDeGQj+FOuNYJWpu3LXMUKkM5
+EX2QtgpF3+kfsk2V5GS1TeTFYaNAEkIK9dUnkj5aQr6qed0B/ogc6f3JyPc7CjZT
+YCHjBN8Pikz7zONJwMe5gb/bCzLRchxNsQ8CYua77ZuHLp0zuohEDaWRpocl9FsV
+VBKupc7v6WAMh+EoH+NtqBBO0V+YzbyaKfZs4YOicpCPrRZbwo+EB8uuoQBY7+jt
+HUke2GE9FS/dDcVTxoWVfp2i15BZp/hqm3XGt4XHCjyEu3f0T6/C3O1FvRrSabI=
+=LfBx
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.testing.osgi-mock.junit5-3.2.0-source-release.zip.md5
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.junit5-3.2.0-source-release.zip.md5 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.junit5-3.2.0-source-release.zip.md5 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+edad37624025c4c335129deadfd8ffba
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.osgi-mock.junit5-3.2.0-source-release.zip.sha1
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.junit5-3.2.0-source-release.zip.sha1 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.junit5-3.2.0-source-release.zip.sha1 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+9b45c042d22c492b566d23ef701bca8b328d5355
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.osgi-mock.junit5-3.2.0-source-release.zip.sha512
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.junit5-3.2.0-source-release.zip.sha512 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.junit5-3.2.0-source-release.zip.sha512 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+54f061481308a90d4d281f2ef44985350e9665ac308e3604ed8caaa6a5be319fb03ab38ecee2e07c06fe6865aea97abd075e327897d7d872eb50fdca31c3e504
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.osgi-mock.junit5-3.2.0-source-release.zip.sha512.md5
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.junit5-3.2.0-source-release.zip.sha512.md5 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.junit5-3.2.0-source-release.zip.sha512.md5 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+1502508f0238404217f910288fe7153a
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.osgi-mock.junit5-3.2.0-source-release.zip.sha512.sha1
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.junit5-3.2.0-source-release.zip.sha512.sha1 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.junit5-3.2.0-source-release.zip.sha512.sha1 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+5c14b779e72270632c1de25d080eb31ffc03738f
\ No newline at end of file

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

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

Added: release/sling/org.apache.sling.testing.osgi-mock.junit5-3.2.0-sources.jar.asc
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.junit5-3.2.0-sources.jar.asc (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.junit5-3.2.0-sources.jar.asc Thu Dec  2 19:45:32 2021
@@ -0,0 +1,11 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQEcBAABCgAGBQJhpQkpAAoJEM4rf/Z1146SHDgH/2QOunABVRmyP0Dynq+a09OG
+g82F91JvnxPdCdg3si153Rm0yynI0eQgxcVgR9rcutuHDMEyasoMrUYWCR+AlX6g
+/ELJMibbbVfsOXHFGQ1a3fphw9D+7KeIrvfKU+G8AGVZQsO5bbeo12lOCqFbSOuV
+ZJEqpqpwgy84bIBfK8pR+9jflHgC0f2OCQiyKB18VbuRNl7G107UYkpq8x9gMLFP
+nF2OyCzf9JcqsoA5wWFEDLFuLqsP0RNBULXCRMi396u77puLJzsuuWVgkbIA6uNv
+fzld3eBOSa7qT91ynLvFaR0WN0NUdJbp64pooZmIHiJLWe/Kg+Ps2bg/T6NDWLI=
+=v0QT
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.testing.osgi-mock.junit5-3.2.0-sources.jar.md5
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.junit5-3.2.0-sources.jar.md5 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.junit5-3.2.0-sources.jar.md5 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+356f9f520c38ae33dfe8faa4ed38a25d
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.osgi-mock.junit5-3.2.0-sources.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.junit5-3.2.0-sources.jar.sha1 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.junit5-3.2.0-sources.jar.sha1 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+8a2f90242ac5cba81428b547c3d26370fce8ea31
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.osgi-mock.junit5-3.2.0.jar
==============================================================================
Binary file - no diff available.

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

Added: release/sling/org.apache.sling.testing.osgi-mock.junit5-3.2.0.jar.asc
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.junit5-3.2.0.jar.asc (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.junit5-3.2.0.jar.asc Thu Dec  2 19:45:32 2021
@@ -0,0 +1,11 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQEcBAABCgAGBQJhpQknAAoJEM4rf/Z1146SRnkIAIgGoP8atdnJcNXEa4R4gfeC
+wMga6dobh1gGDjc6Qq6xD9AUlvc7Fh+em8ixkynmmtDoTVcyuQleEpK+QDNimPD2
+fPGrodsNR76kNO7uSxfWAVQ3WVhWkffQu2TNG3JDE2Gsq0vWNyDlJI4F+amKFPiP
+NcKxwmm7AGrZlrhcm4eWDwW2Xp6hQdANtodwfYOhzDIc9GHoB/rBAAGIuvCHyaQk
+N6W/xooEpzXMWTL4XXN05XYbWn+H4Madg19897DMi9Q+0cQLqi/DXFMntm/SV+tA
+iZALc5H9K2Pm7k6A0emVLeqzRHvYegCOVhQBEEadrlkHs/jfUiQwkBux+7Lb7Ig=
+=1yN+
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.testing.osgi-mock.junit5-3.2.0.jar.md5
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.junit5-3.2.0.jar.md5 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.junit5-3.2.0.jar.md5 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+0dd0f93010c78577ad7191a7d2d6b8d0
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.osgi-mock.junit5-3.2.0.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.junit5-3.2.0.jar.sha1 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.junit5-3.2.0.jar.sha1 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+12d632daceab4e4c33a9869bf907bac761aea16f
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.osgi-mock.junit5-3.2.0.pom
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.junit5-3.2.0.pom (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.junit5-3.2.0.pom Thu Dec  2 19:45:32 2021
@@ -0,0 +1,115 @@
+<?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.0</version>
+        <relativePath>../parent/pom.xml</relativePath>
+    </parent>
+
+    <artifactId>org.apache.sling.testing.osgi-mock.junit5</artifactId>
+    <packaging>jar</packaging>
+
+    <name>Apache Sling Testing OSGi Mock JUnit 5</name>
+
+    <dependencies>
+
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.testing.osgi-mock.core</artifactId>
+            <version>3.2.0</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.testing.osgi-mock.core</artifactId>
+            <version>3.2.0</version>
+            <classifier>tests</classifier>
+            <scope>test</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>org.mockito</groupId>
+            <artifactId>mockito-core</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.mockito</groupId>
+            <artifactId>mockito-junit-jupiter</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.testing.logging-mock</artifactId>
+            <scope>test</scope>
+        </dependency>
+
+        <!-- JUnit 5 -->
+        <dependency>
+            <groupId>org.junit.jupiter</groupId>
+            <artifactId>junit-jupiter-api</artifactId>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.junit.jupiter</groupId>
+            <artifactId>junit-jupiter-params</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.junit.jupiter</groupId>
+            <artifactId>junit-jupiter-engine</artifactId>
+            <scope>test</scope>
+        </dependency>
+
+    </dependencies>
+
+    <dependencyManagement>
+        <dependencies>
+
+            <dependency>
+                <groupId>org.junit</groupId>
+                <artifactId>junit-bom</artifactId>
+                <version>5.2.0</version>
+                <type>pom</type>
+                <scope>import</scope>
+            </dependency>
+
+        </dependencies>
+    </dependencyManagement>
+
+    <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>
+            </plugin>
+
+        </plugins>
+    </build>
+
+</project>

Added: release/sling/org.apache.sling.testing.osgi-mock.junit5-3.2.0.pom.asc
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.junit5-3.2.0.pom.asc (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.junit5-3.2.0.pom.asc Thu Dec  2 19:45:32 2021
@@ -0,0 +1,11 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQEcBAABCgAGBQJhpQkoAAoJEM4rf/Z1146S58wH/iSKT8OKWiriaMJfhQNLkoMB
+rFGvZCKda7565NkZxpmVkibvBkITTDLVbKCfCWqlfemXKUSUfbKTYhyBP1S8/poJ
+g5zo2Fg8gl9vkABoXbRaaHNu+nHwPxGf83jWV8kRK2UVHGI3pVK8spKN8tQxvzEH
+oq/4OnzFP+0+l4uH8vbsWagofjzsk7EcFrXXsb1iGqQ88QPbIVOFY47AapfHPNWQ
+800wDiNhIGez0l1kVTMzmWwDcUsgGJFQCCsbmF+wv6lp5nhfJHZ8MK62uBiaJnVS
+K50J1hdMPIY4I9woZBZMdJWSZC2IxA4U1Mz6Du/QWtdZqd5sJ5WFElIARlb0/Fo=
+=QXUn
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.testing.osgi-mock.junit5-3.2.0.pom.md5
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.junit5-3.2.0.pom.md5 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.junit5-3.2.0.pom.md5 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+4e8e9be0b5a3c45c63dffd3cbfe76ce2
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.osgi-mock.junit5-3.2.0.pom.sha1
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.junit5-3.2.0.pom.sha1 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.junit5-3.2.0.pom.sha1 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+bc1934e8bd39f5eeaaed612699b67b705702bee7
\ No newline at end of file

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

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

Propchange: release/sling/org.apache.sling.testing.osgi-mock.parent-3.2.0-source-release.zip
------------------------------------------------------------------------------
    svn:needs-lock = *

Added: release/sling/org.apache.sling.testing.osgi-mock.parent-3.2.0-source-release.zip.asc
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.parent-3.2.0-source-release.zip.asc (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.parent-3.2.0-source-release.zip.asc Thu Dec  2 19:45:32 2021
@@ -0,0 +1,11 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQEcBAABCgAGBQJhpQjqAAoJEM4rf/Z1146S12QH/jlOe+zAoWokQu1OHNOWWZKc
+Zn0LiyeHiN20JCjVoQaal3UzsGtG8zoz1BtwZKCrJtVNJg4jCONB7FTgFltYSiAt
++7PGWerrE89nng+gkRsHGUZ0Mv2SkTLB8SluqLHNuZ6wqukdpqd/2gohbgf4yLT/
+6zcrcyHoTrC1FsaNqUiwzcijArvJ96tJmvInasyCVRFp89MifiyB5VoMAl3iCgCS
+UMnG+nrYdHj8gwkurEMg0w9oDwvXDf++tjO+58x6R/ne4kZbHYDvA6CWsJvAZCAS
+NjkU1dP8rD67AwWlJDXFJoWf05nNG0QG3HJ2NKyfZL1r2BpeLeMgwW+AxWOc1aE=
+=lhzz
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.testing.osgi-mock.parent-3.2.0-source-release.zip.md5
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.parent-3.2.0-source-release.zip.md5 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.parent-3.2.0-source-release.zip.md5 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+6e13270f87be3828099e8e39f06ba07e
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.osgi-mock.parent-3.2.0-source-release.zip.sha1
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.parent-3.2.0-source-release.zip.sha1 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.parent-3.2.0-source-release.zip.sha1 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+db4308fc91352e2304297f144e4f6ca3b0f97d37
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.osgi-mock.parent-3.2.0-source-release.zip.sha512
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.parent-3.2.0-source-release.zip.sha512 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.parent-3.2.0-source-release.zip.sha512 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+1c8da355c930f03da1f8ddb74e1a8140058913d6f3a3dd86d6ccae9c82ae382bf2d1a20fcea64d0632980ff7b71fb7aba7dc4e583da56c479b6c62a1e8a43128
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.osgi-mock.parent-3.2.0-source-release.zip.sha512.md5
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.parent-3.2.0-source-release.zip.sha512.md5 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.parent-3.2.0-source-release.zip.sha512.md5 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+11ffbc28622f7442552448323061e62f
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.osgi-mock.parent-3.2.0-source-release.zip.sha512.sha1
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.parent-3.2.0-source-release.zip.sha512.sha1 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.parent-3.2.0-source-release.zip.sha512.sha1 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+ec1c266b75803466b464e3dc9dbfaeade185ecb3
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.osgi-mock.parent-3.2.0.pom
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.parent-3.2.0.pom (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.parent-3.2.0.pom Thu Dec  2 19:45:32 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.0</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-11-29T17:06:40Z</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.0</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.0.pom.asc
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.parent-3.2.0.pom.asc (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.parent-3.2.0.pom.asc Thu Dec  2 19:45:32 2021
@@ -0,0 +1,11 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQEcBAABCgAGBQJhpQjqAAoJEM4rf/Z1146S0JQIALPbSzmXUFpd/E5uAM9QYd8T
+PTOXVVUTdgEWl8SUCwBQ9wymAbsnGNgw+zY0SV/L1LspVt/IyNntiuRRbHlYu4Qp
+bYihA9t0sW0zNu9b8Lr1oqOAvorkdD44l9Kl38NqyWh+bXfCDyo+uFf9AM6owZYb
+0+9MJT8dunrWOU5Wh8Z2go1ZC08t53JI+MzV/r9wz0PWjFYx5U/t7bSbHkYv+vDd
+wwPFYYYghuVqS9CyJtwhoRGhO6hG0hp1LAKLO5nMAof22c/Uukmj163iwPrEbDoL
+xlg2wnlp4lJEEOlJtF/PhWY9RtO/C/HH4/Ohmdnu20z3TjVHKRPMcKyRtJ4Sia8=
+=F2iJ
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.testing.osgi-mock.parent-3.2.0.pom.md5
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.parent-3.2.0.pom.md5 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.parent-3.2.0.pom.md5 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+bdafebb314c58de3ba54719446a1c9d2
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.osgi-mock.parent-3.2.0.pom.sha1
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.parent-3.2.0.pom.sha1 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.parent-3.2.0.pom.sha1 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+bb83dd5feaa44f22ee7f5c09617880756868549a
\ No newline at end of file

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

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

Added: release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.0-javadoc.jar.asc
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.0-javadoc.jar.asc (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.0-javadoc.jar.asc Thu Dec  2 19:45:32 2021
@@ -0,0 +1,11 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQEcBAABCgAGBQJhpQj6AAoJEM4rf/Z1146SeAQIANLmbBcAs0Og9BvNgXaodxYx
+z14nmaI+tJsmhTh/0Yjc/RebQf2jWukXsWtl143kEmsJJ+npsYyoB/9GOFLzmKdc
+KE2g8mLcxHNXbNyeQmX7kOLlrKVCASPK301gwRAtTTvJC6oQio9ODAD19+XVMHap
+T5/VG2riXGIJREVgbiJS/FEgYpuQR8kcxPONYOOKQZ+K8knybW7GiuXHkFV/4ued
+zcwAXUymK4iTZ1h4APv9JM7YO7nu0nQkgcR4XkBjwCIQiItbmztD42+5GoZ2Vcqp
+27sBqDeC2fHzxkSrmYQISuHsX+bZU/LAPDOjwG+sK9Cy7UnNTCS8ooQJXYxxy4Q=
+=i2uM
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.0-javadoc.jar.md5
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.0-javadoc.jar.md5 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.0-javadoc.jar.md5 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+81561396855b0293e5597f568e89ec80
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.0-javadoc.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.0-javadoc.jar.sha1 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.0-javadoc.jar.sha1 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+237618bac82af8d36df515d081de2acf99d16783
\ No newline at end of file

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

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

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

Added: release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.0-source-release.zip.asc
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.0-source-release.zip.asc (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.0-source-release.zip.asc Thu Dec  2 19:45:32 2021
@@ -0,0 +1,11 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQEcBAABCgAGBQJhpQj4AAoJEM4rf/Z1146S/BgIANT3b/TM0C6SzrZEdDtMPmxu
+VzROdDnaKbFsVf4/jpwozyDFyPIKUTBdcclAJ4Wjuc29xsLujY2vH1ZtlJtC3w8b
+H/M354jBAkNR/OFFWT8lhewqK4VPzxFYNrYjHYt1Z9KPvkAq1wezdapVwBiYt4Ru
+63z8oF5OrQx9oM6nVrIIIvxTAsXD6s7yukpG0VflOivJJ4rypz4t/gXEqLkf3/qS
+ff55UoAeLwrvPQs1CAam/G7Few+4CQ98TeDkhWZaU40ZKQ0pnLgkh2RGgsThIF1p
+m27KXY82WUQDsoAT23rmw9o2WSi+k+Hhp3GQRVvyWbC3QzP3NC+aHExy/1vQBb8=
+=KYXu
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.0-source-release.zip.md5
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.0-source-release.zip.md5 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.0-source-release.zip.md5 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+c7ba237792a69e4e6ed454176022c43c
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.0-source-release.zip.sha1
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.0-source-release.zip.sha1 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.0-source-release.zip.sha1 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+7ececc9cb08094ca74331876f5349135a86cf354
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.0-source-release.zip.sha512
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.0-source-release.zip.sha512 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.0-source-release.zip.sha512 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+6e480799260224498afd1102fa34a1bcf361a489c99fef8f2a939b0244cdcf4af311b385bb0da7c018801659d78cc9aa04f1b9d854fb21b6cfabf625203703f6
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.0-source-release.zip.sha512.md5
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.0-source-release.zip.sha512.md5 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.0-source-release.zip.sha512.md5 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+19ee18981156eee81c833f2cc157d688
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.0-source-release.zip.sha512.sha1
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.0-source-release.zip.sha512.sha1 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.0-source-release.zip.sha512.sha1 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+2617ba5672130df77790703c81469070064961e8
\ No newline at end of file

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

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

Added: release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.0-sources.jar.asc
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.0-sources.jar.asc (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.0-sources.jar.asc Thu Dec  2 19:45:32 2021
@@ -0,0 +1,11 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQEcBAABCgAGBQJhpQj5AAoJEM4rf/Z1146SIIcIAKVeVVCxJ+fjj1Q3pq/huaki
+Lwx4emXoVUfulwMM7G7tyZASuFzF7xuhfP+rSem4p3ipreiNLMy4m8QPxyOr6Jco
+1HBPa28rjLq8Xrri0nTi56z8BIxDNj3LOK34mpYGt0qqu75kzDVeOvlp1m/7LORy
+1qLuDhHWEZWL9x5Ox/IjOZ8WNxrkTbzxaggORJCgvMH9f+mdigb9/8Z8t4jzufQv
+qyvXyOAw5x6dv4uVYDC0UqvEOwHuPcu5cv/5cau6zWJEWUeN1ztb7xcnfhJi/pMV
+RvnLn5k0YFw0ZTkHXja09VkLcG31W6bx20uFwNIjFaTsBNRxgDSCBDx76XiGM0Q=
+=q4Vd
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.0-sources.jar.md5
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.0-sources.jar.md5 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.0-sources.jar.md5 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+012920b03c9e30337a9a7a9332ad4c86
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.0-sources.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.0-sources.jar.sha1 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.0-sources.jar.sha1 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+ed37126ed158da9c038dc43a3a73024d24c619ae
\ No newline at end of file

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

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

Added: release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.0.jar.asc
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.0.jar.asc (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.0.jar.asc Thu Dec  2 19:45:32 2021
@@ -0,0 +1,11 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQEcBAABCgAGBQJhpQj3AAoJEM4rf/Z1146S1ugIAIS4eykQPiZMDgAnU50e/0VS
+EuKRu0vYK6/qVeFFpkDqEVe2OAudB2zxnDbvrT9K8FDHm6/o5b4XpxbOtVPDMog+
+4qmlOxsUbMoHVRPUTvK/I2E5KbJ+v4IHCBREXHzA+hojNcwP3klcJQJLegZVwInl
+wkj74F44ElsypSzHfJRz4rImfvtvTYp0csS6tCYaPrPuzbe6QBQ5IFmD/yJKkxJ/
+Wd02PMGA5ObBdo8MqQuhYiKHIQGgnks1M819hVt87IEdiQ+6JvvK1igesVtbjKHu
+der3dD1LM7VLOQmYHCX1MdsKE4/+Q6fopwLiNgBWClwChvyKwUolHNnxLXHgdQM=
+=itg5
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.0.jar.md5
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.0.jar.md5 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.0.jar.md5 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+b7d740094fd696cf423585d9323636f4
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.0.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.0.jar.sha1 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.0.jar.sha1 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+311e8599c29556d809f005a383784aeb90234a82
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.0.pom
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.0.pom (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.0.pom Thu Dec  2 19:45:32 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.0</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.0.pom.asc
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.0.pom.asc (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.0.pom.asc Thu Dec  2 19:45:32 2021
@@ -0,0 +1,11 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQEcBAABCgAGBQJhpQj3AAoJEM4rf/Z1146SncQH/iJroVtP2BUBb4FYwjr6WOSD
+8Om8uMvUo6TCOThjuSp6fiYYcQfGefcvTse//I1UWBUREsQhTAj57IPevohHq0R+
+fJb0pPwRaDG9Trxee1FTwXgA2wyvmtCTfnZbWXWugEFtDzP05aIL6AsUYF9aIkQx
+KkdU9g9GpNOUMxNCOGxgKSLCK8gwHVFwU+8rUCfm6i1AYe/0i8hOMwmyqehY22Gl
+NdNGe+8DIt/Wl749L8Qu0bCTCt3uaDAaKR0tyssMq7pslZ/Gk+TT0BtGFyCGHjhm
+EMly2KoqFnwwxEtzeWpECL1MDeBGMKqRKnEda88bONRjFlLx62MYioZMInoI3wM=
+=f6fZ
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.0.pom.md5
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.0.pom.md5 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.0.pom.md5 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+2714981dd01c0b252c0b47554b165597
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.0.pom.sha1
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.0.pom.sha1 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock.test-services-3.2.0.pom.sha1 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+71d476a423a9cee0fd28ac44d7d2511608a3cc98
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.sling-mock-3.2.0-source-release.zip
==============================================================================
Binary file - no diff available.

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

Propchange: release/sling/org.apache.sling.testing.sling-mock-3.2.0-source-release.zip
------------------------------------------------------------------------------
    svn:needs-lock = *

Added: release/sling/org.apache.sling.testing.sling-mock-3.2.0-source-release.zip.asc
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-3.2.0-source-release.zip.asc (added)
+++ release/sling/org.apache.sling.testing.sling-mock-3.2.0-source-release.zip.asc Thu Dec  2 19:45:32 2021
@@ -0,0 +1,11 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQEcBAABCgAGBQJhpQpvAAoJEM4rf/Z1146Sh2AH/1CwBERx6S4xh2DByjcqGtaQ
+gIU9Kzx6DpINbIGuQ+zYinybfimLW+1P6L3nEnuvSukOdTEVu5r13ig7fMPLIf5B
+Llia1oY6pfuwjy8F5BuCItUIBk4qBQy+QWeiAkjrVEP6gArsJnlZch49MM5qXPiL
+a/FC9rumd9aL9C37UA0Y7YmuUdlqJSvR9lIOJrV8GK7Y0LF3NPqutPHCwkyfGdGX
+HwDRsysGLdcRASjVhNMDSoLzifEF5UBDWEyjbbxWdErRwy7q1veqd6E3ihZ+s2HW
+11mPopVTAkijW8QcRcf3X2dJr/lZziW/EsNP2c1LrRf9EuQzjYss2Ve8bGi9/FQ=
+=FnaS
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.testing.sling-mock-3.2.0-source-release.zip.md5
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-3.2.0-source-release.zip.md5 (added)
+++ release/sling/org.apache.sling.testing.sling-mock-3.2.0-source-release.zip.md5 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+a2f04e783b98a760dd1e907f4ae9a96f
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.sling-mock-3.2.0-source-release.zip.sha1
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-3.2.0-source-release.zip.sha1 (added)
+++ release/sling/org.apache.sling.testing.sling-mock-3.2.0-source-release.zip.sha1 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+980f0292d21ff9069efc2460bf231dce4b484415
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.sling-mock-3.2.0-source-release.zip.sha512
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-3.2.0-source-release.zip.sha512 (added)
+++ release/sling/org.apache.sling.testing.sling-mock-3.2.0-source-release.zip.sha512 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+ff1446d66b1763ff027d70fc3a0b25ce50011bda2a28c1f69a0591836fa86cb995bc8bb6c34debb52ccc2dbf1fc78a7ff036d1275e1408f97dd03196dcb5cbdb
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.sling-mock-3.2.0-source-release.zip.sha512.md5
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-3.2.0-source-release.zip.sha512.md5 (added)
+++ release/sling/org.apache.sling.testing.sling-mock-3.2.0-source-release.zip.sha512.md5 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+0f26fff915ac0bf7f38593cfb3112b97
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.sling-mock-3.2.0-source-release.zip.sha512.sha1
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-3.2.0-source-release.zip.sha512.sha1 (added)
+++ release/sling/org.apache.sling.testing.sling-mock-3.2.0-source-release.zip.sha512.sha1 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+ec3998c19e9cf3a1e99137d6f87d54e9aed3cc34
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.sling-mock-3.2.0.pom
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-3.2.0.pom (added)
+++ release/sling/org.apache.sling.testing.sling-mock-3.2.0.pom Thu Dec  2 19:45:32 2021
@@ -0,0 +1,42 @@
+<?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.sling-mock.parent</artifactId>
+        <version>3.2.0</version>
+        <relativePath>../parent/pom.xml</relativePath>
+    </parent>
+
+    <artifactId>org.apache.sling.testing.sling-mock</artifactId>
+    <packaging>pom</packaging>
+
+    <name>Apache Sling Testing Sling Mock Relocation</name>
+    <description>Please use artifact 'org.apache.sling.testing.sling-mock.junit4' instead.</description>
+
+    <distributionManagement>
+        <relocation>
+            <artifactId>org.apache.sling.testing.sling-mock.junit4</artifactId>
+        </relocation>
+    </distributionManagement>
+
+</project>

Added: release/sling/org.apache.sling.testing.sling-mock-3.2.0.pom.asc
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-3.2.0.pom.asc (added)
+++ release/sling/org.apache.sling.testing.sling-mock-3.2.0.pom.asc Thu Dec  2 19:45:32 2021
@@ -0,0 +1,11 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQEcBAABCgAGBQJhpQpvAAoJEM4rf/Z1146Ss/AH/1yJv85hQa1LMIyad0okromA
+9tC0eplrGqrw5sBRwmfYKBbxjEutAccnAOjptVaFS47b+n4KdLfHZM6pAUWO+zM8
+QauZoEXKKTE5rGvNa5Bfaom5GGOenSYKeszOjtNAKgilvRmyOcU76sPPZvmBIxSg
+E7q1GPW1SQIKurcKoLU81cqF13VBNiZAKaaO0aUCF5exXDDj+AWU3zUNZrIT0ksX
+0nvVQrS4kS2To/Sl/vKVaxsnHBAeLrAR8zGom9BsNH/OmKXYHFqwQq2dleD//Kap
+0gQQLizcJSsyjXeMrw5FSiq+da4mWJ7jWTg5EP4O9ILLHqxEOUy0sAmvcdbEC70=
+=TM8w
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.testing.sling-mock-3.2.0.pom.md5
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-3.2.0.pom.md5 (added)
+++ release/sling/org.apache.sling.testing.sling-mock-3.2.0.pom.md5 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+46723d718e20ab0a0f7b50c4a21188f5
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.sling-mock-3.2.0.pom.sha1
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-3.2.0.pom.sha1 (added)
+++ release/sling/org.apache.sling.testing.sling-mock-3.2.0.pom.sha1 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+2ce4edbf8470c5c7ea1bb4268d521c403d9df4e4
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.sling-mock-oak-3.1.0-1.40.0-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: release/sling/org.apache.sling.testing.sling-mock-oak-3.1.0-1.40.0-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/sling/org.apache.sling.testing.sling-mock-oak-3.1.0-1.40.0-javadoc.jar.asc
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-oak-3.1.0-1.40.0-javadoc.jar.asc (added)
+++ release/sling/org.apache.sling.testing.sling-mock-oak-3.1.0-1.40.0-javadoc.jar.asc Thu Dec  2 19:45:32 2021
@@ -0,0 +1,11 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQEcBAABCgAGBQJhpQtrAAoJEM4rf/Z1146ShP4IAIgsbXCV0c354/gWFg3aEqEy
++79Q3JSdxvft0XTy5GryKGGDhJ1boa5dB2/L1/orsY1RZmm2mMi8OYuZFMt79ixS
+Iqcatu+zVz9AeEZz1WCu3WY/xXMlSALKhkpb7WvuP4PttVVsGUU9P6j47GBtbd69
+tnFteiG4Qu05k4yCIbmBVTxeMFsBEv/4unK5GiSzLKZ+Ck88qDorDe7JcytL3za1
+Rz+aESQajqtpUTf74BqlRxi2217L+uvzxlxYGETeWqctxfHavdjUPdUR/C8ev2Bw
+/GdBC6HpH+nzv3tlSieFCDUDegbz8sFSkj5DO2q8K3V5Bzi0VWnCsXJypZdQn40=
+=H4RN
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.testing.sling-mock-oak-3.1.0-1.40.0-javadoc.jar.md5
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-oak-3.1.0-1.40.0-javadoc.jar.md5 (added)
+++ release/sling/org.apache.sling.testing.sling-mock-oak-3.1.0-1.40.0-javadoc.jar.md5 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+d313e0f8dac7408eb96950e30abef1c8
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.sling-mock-oak-3.1.0-1.40.0-javadoc.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-oak-3.1.0-1.40.0-javadoc.jar.sha1 (added)
+++ release/sling/org.apache.sling.testing.sling-mock-oak-3.1.0-1.40.0-javadoc.jar.sha1 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+afedc644d647e8995c668b8a77eecba9106a222a
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.sling-mock-oak-3.1.0-1.40.0-source-release.zip
==============================================================================
Binary file - no diff available.

Propchange: release/sling/org.apache.sling.testing.sling-mock-oak-3.1.0-1.40.0-source-release.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Propchange: release/sling/org.apache.sling.testing.sling-mock-oak-3.1.0-1.40.0-source-release.zip
------------------------------------------------------------------------------
    svn:needs-lock = *

Added: release/sling/org.apache.sling.testing.sling-mock-oak-3.1.0-1.40.0-source-release.zip.asc
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-oak-3.1.0-1.40.0-source-release.zip.asc (added)
+++ release/sling/org.apache.sling.testing.sling-mock-oak-3.1.0-1.40.0-source-release.zip.asc Thu Dec  2 19:45:32 2021
@@ -0,0 +1,11 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQEcBAABCgAGBQJhpQtqAAoJEM4rf/Z1146S5moH/3CEfbpzcOQJMp08Bkxq97fF
+bw+Y2uDcYxgQmHRVdI1PDBA+LUBKX2HvbHyRP6jeTxl0VbdzuTcCDdQ39+fmSvqQ
+hc1dyglTh5C6SxvBMN/DzQKBJRdm6RlAOqLtmm9DY+xWRBalbbwComMsvU3gOPky
+th8B0sBYsuC/mfKvmTn6zxIdgC8pm+dBYUaxhV28ZDJ+kxwkq24hjj9znsDLy5OM
+JzMgB5bTz2PqWq6oD1V1Od+RYPFcY5U6i7wZNbH3TvsCOl7PsUsTwmUVW1tHdS7f
+i8JTbBoLZn7SePknHDAwy1iNoesh/7GoEsrznuFXir8CbcaFUcNvizXxXNocHTc=
+=9u+l
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.testing.sling-mock-oak-3.1.0-1.40.0-source-release.zip.md5
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-oak-3.1.0-1.40.0-source-release.zip.md5 (added)
+++ release/sling/org.apache.sling.testing.sling-mock-oak-3.1.0-1.40.0-source-release.zip.md5 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+06edce94399a040b43e6103636471566
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.sling-mock-oak-3.1.0-1.40.0-source-release.zip.sha1
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-oak-3.1.0-1.40.0-source-release.zip.sha1 (added)
+++ release/sling/org.apache.sling.testing.sling-mock-oak-3.1.0-1.40.0-source-release.zip.sha1 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+2f29829d652618aecea5b4db80a47e88bd34845c
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.sling-mock-oak-3.1.0-1.40.0-source-release.zip.sha512
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-oak-3.1.0-1.40.0-source-release.zip.sha512 (added)
+++ release/sling/org.apache.sling.testing.sling-mock-oak-3.1.0-1.40.0-source-release.zip.sha512 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+d3f5bbc17f9593be64680a8bc9de7d4c97e9740ed3ce56b65cd1f575157b79c98c2024d86b060e41d2235b2e94c8ac625ebe1074c55425fc48ccecfd153275ff
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.sling-mock-oak-3.1.0-1.40.0-source-release.zip.sha512.md5
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-oak-3.1.0-1.40.0-source-release.zip.sha512.md5 (added)
+++ release/sling/org.apache.sling.testing.sling-mock-oak-3.1.0-1.40.0-source-release.zip.sha512.md5 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+dd418c895d834fab468171c91b14ad7f
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.sling-mock-oak-3.1.0-1.40.0-source-release.zip.sha512.sha1
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-oak-3.1.0-1.40.0-source-release.zip.sha512.sha1 (added)
+++ release/sling/org.apache.sling.testing.sling-mock-oak-3.1.0-1.40.0-source-release.zip.sha512.sha1 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+12dedeffb9bcce7b581eddd5a7d22c64d6a3dcab
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.sling-mock-oak-3.1.0-1.40.0-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: release/sling/org.apache.sling.testing.sling-mock-oak-3.1.0-1.40.0-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/sling/org.apache.sling.testing.sling-mock-oak-3.1.0-1.40.0-sources.jar.asc
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-oak-3.1.0-1.40.0-sources.jar.asc (added)
+++ release/sling/org.apache.sling.testing.sling-mock-oak-3.1.0-1.40.0-sources.jar.asc Thu Dec  2 19:45:32 2021
@@ -0,0 +1,11 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQEcBAABCgAGBQJhpQtsAAoJEM4rf/Z1146SNGIH/102BeRfjjrarMoDwV6wG1zM
+p0qvGqEK8+CudLgxcNi8q37eqjr4YkC4MTARiZ2JOezKmql9eJt8HENiOQl8fend
+CuhWXAtcf+kIp6F9MTg5sFxjlmfdACqsmLzF/DEgiPgOdT49qSx656YwulRTV5ro
+ic1fUIH5kLUNO3QkQacNgFq82EP1LnOmDg2cBziahNvYlnwBjDtbEz3y4eb7New+
++XpFXNApPAPCDOmfubW+NJ2dHO3RLlGgn/4SWGfYMM7frCqeJHZk6U0o7YSmv12K
+/Cl61qYcZyTkzQPSQs9PtS3oE/PkZvGXkhH94NTQ8nQdVuIyS+A1NquTpXw0Hhk=
+=JSHI
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.testing.sling-mock-oak-3.1.0-1.40.0-sources.jar.md5
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-oak-3.1.0-1.40.0-sources.jar.md5 (added)
+++ release/sling/org.apache.sling.testing.sling-mock-oak-3.1.0-1.40.0-sources.jar.md5 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+1bac71b65c30286724e63886889d380a
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.sling-mock-oak-3.1.0-1.40.0-sources.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-oak-3.1.0-1.40.0-sources.jar.sha1 (added)
+++ release/sling/org.apache.sling.testing.sling-mock-oak-3.1.0-1.40.0-sources.jar.sha1 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+8902355605cbf8e860fee0b45780601b6031f921
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.sling-mock-oak-3.1.0-1.40.0.jar
==============================================================================
Binary file - no diff available.

Propchange: release/sling/org.apache.sling.testing.sling-mock-oak-3.1.0-1.40.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/sling/org.apache.sling.testing.sling-mock-oak-3.1.0-1.40.0.jar.asc
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-oak-3.1.0-1.40.0.jar.asc (added)
+++ release/sling/org.apache.sling.testing.sling-mock-oak-3.1.0-1.40.0.jar.asc Thu Dec  2 19:45:32 2021
@@ -0,0 +1,11 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQEcBAABCgAGBQJhpQtpAAoJEM4rf/Z1146SUYgIAMrdlpx6xTRz79T67hNiUPd8
+Kb16zDHLHq4R4DCwQ4pGewjWv8/kPBQkxxnFLbtPV5HxwLgCvmmWkzcRSAjPzcrB
+irOK7pGQJlTvLMNkKlDnGOcM5x72aIP5JKnQuEVc9DuhkVRehcNs687RxTVOfvsQ
+FbBadCFtXUd/3am/2x3AtKOY/B7YFlj8SCTN9M356dw94M04tO8PdEUbI9R5slSz
+SYHez48dVv7RoxI8bIZXETBhcZudFkiZPMPkCDHtBtbQPqG/zlvTmGr/ctH3DVV1
+10Etc+aPxlKVOcbwn7l1UZpyFUBqdZt9Y8BWRfy+MbUt3dP4Co/LieLf0/uM088=
+=M7fP
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.testing.sling-mock-oak-3.1.0-1.40.0.jar.md5
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-oak-3.1.0-1.40.0.jar.md5 (added)
+++ release/sling/org.apache.sling.testing.sling-mock-oak-3.1.0-1.40.0.jar.md5 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+b6aeea383af1d9a41dceaa313a54f769
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.sling-mock-oak-3.1.0-1.40.0.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-oak-3.1.0-1.40.0.jar.sha1 (added)
+++ release/sling/org.apache.sling.testing.sling-mock-oak-3.1.0-1.40.0.jar.sha1 Thu Dec  2 19:45:32 2021
@@ -0,0 +1 @@
+3d7315ab77dc5676461285643c5cb6eb7c27e0e7
\ No newline at end of file