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 [3/3] - /release/sling/

Added: release/sling/org.apache.sling.testing.sling-mock-oak-3.1.0-1.40.0.pom
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-oak-3.1.0-1.40.0.pom (added)
+++ release/sling/org.apache.sling.testing.sling-mock-oak-3.1.0-1.40.0.pom Thu Dec  2 19:45:32 2021
@@ -0,0 +1,175 @@
+<?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>sling-bundle-parent</artifactId>
+    <groupId>org.apache.sling</groupId>
+    <version>46</version>
+    <relativePath>pom.xml</relativePath>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <artifactId>org.apache.sling.testing.sling-mock-oak</artifactId>
+  <name>Apache Sling Testing Sling Mock Oak</name>
+  <version>3.1.0-1.40.0</version>
+  <description>Implements a resource resolver type for Jackrabbit Oak that can be used in unit tests based on Sling Mocks.</description>
+  <scm>
+    <connection>scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-testing-sling-mock-oak.git</connection>
+    <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-testing-sling-mock-oak.git</developerConnection>
+    <tag>org.apache.sling.testing.sling-mock-oak-3.1.0-1.40.0</tag>
+    <url>https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-testing-sling-mock-oak.git</url>
+  </scm>
+  <build>
+    <resources>
+      <resource>
+        <filtering>true</filtering>
+        <directory>src/main/resources</directory>
+      </resource>
+    </resources>
+    <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>
+      <plugin>
+        <artifactId>maven-shade-plugin</artifactId>
+        <executions>
+          <execution>
+            <phase>package</phase>
+            <goals>
+              <goal>shade</goal>
+            </goals>
+          </execution>
+        </executions>
+        <configuration>
+          <artifactSet>
+            <includes>
+              <include>org.apache.jackrabbit:*</include>
+            </includes>
+          </artifactSet>
+          <createSourcesJar>true</createSourcesJar>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.rat</groupId>
+        <artifactId>apache-rat-plugin</artifactId>
+        <configuration>
+          <excludes>
+            <exclude>dependency-reduced-pom.xml</exclude>
+            <exclude>src/test/resources/**</exclude>
+            <exclude>src/main/resources/**</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+  <dependencies>
+    <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.apache.sling</groupId>
+      <artifactId>org.apache.sling.testing.sling-mock.core</artifactId>
+      <version>3.2.0</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.sling</groupId>
+      <artifactId>org.apache.sling.testing.sling-mock.core</artifactId>
+      <version>3.2.0</version>
+      <classifier>tests</classifier>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.sling</groupId>
+      <artifactId>org.apache.sling.testing.sling-mock.junit4</artifactId>
+      <version>3.2.0</version>
+      <scope>test</scope>
+      <exclusions>
+        <exclusion>
+          <artifactId>org.apache.sling.testing.osgi-mock.junit4</artifactId>
+          <groupId>org.apache.sling</groupId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+    <dependency>
+      <groupId>javax.jcr</groupId>
+      <artifactId>jcr</artifactId>
+      <version>2.0</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>javax.servlet</groupId>
+      <artifactId>javax.servlet-api</artifactId>
+      <version>3.1.0</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.jetbrains</groupId>
+      <artifactId>annotations</artifactId>
+      <version>16.0.2</version>
+      <scope>provided</scope>
+    </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>
+      <exclusions>
+        <exclusion>
+          <artifactId>hamcrest-core</artifactId>
+          <groupId>org.hamcrest</groupId>
+        </exclusion>
+      </exclusions>
+    </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>
+  </dependencies>
+  <properties>
+    <oak.version>1.40.0</oak.version>
+    <sling-mock.version>3.2.0</sling-mock.version>
+    <jackrabbit.version>2.20.2</jackrabbit.version>
+    <project.build.outputTimestamp>2021-11-29T17:15:57Z</project.build.outputTimestamp>
+  </properties>
+</project>

Added: release/sling/org.apache.sling.testing.sling-mock-oak-3.1.0-1.40.0.pom.asc
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-oak-3.1.0-1.40.0.pom.asc (added)
+++ release/sling/org.apache.sling.testing.sling-mock-oak-3.1.0-1.40.0.pom.asc Thu Dec  2 19:45:32 2021
@@ -0,0 +1,11 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQEcBAABCgAGBQJhpQtpAAoJEM4rf/Z1146SVkMH/Aj9HjJflz1ALlHAshURH8jr
+lPpizIwgsvHzcf2VLNuRwP261DKgJHZIU873SY8yRweNYr9FTdTWHnTsykcF4LFX
++Qc8lev3SONl4jEhiIyuU1t17e4AXLBO59hlngTv3haLg3UI0fL2CEdFzHj+oRw3
+LyuRc0FoE/dxpcNRg+xuxPPyQRQ8YROSzFdcHW/trxOKaBFdTx2BwxAu/EAlHFmr
+WKeF/4z++LUxKIbpNTkubbAfFLbpoBncaI1aOcFL1htZYdSXgPtI+AGpoZeA51K/
+gc1ioeJYMwA1g9xVu11rWQFKc4iF31CYUp6bdqnSWYXN8YlShH1AgftzHC9piyE=
+=SPoD
+-----END PGP SIGNATURE-----

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

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

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

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

Added: release/sling/org.apache.sling.testing.sling-mock.core-3.2.0-javadoc.jar.asc
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock.core-3.2.0-javadoc.jar.asc (added)
+++ release/sling/org.apache.sling.testing.sling-mock.core-3.2.0-javadoc.jar.asc Thu Dec  2 19:45:32 2021
@@ -0,0 +1,11 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQEcBAABCgAGBQJhpQpMAAoJEM4rf/Z1146SnI8IALWVbJK84Ek3J5+1JusILxTT
+lfYBE6aSbY4TGZk2js+ELt60O4Zy9zKXAhXuOHXveYfgnzjjHlRwvwFUDHXszQxz
+L5Xgylb6rgECH6CnySdg9dO6cyRBrbUaDKKlCAQBN7ZqJiKe+fj5RGBDOLLYZGkS
+gvdVOTV6cfyR7yaowebIN7OhofOA1Bf0KatUlX84OlgjLNrg0SjDBHVOnz0EGmF2
+e2HP0vB7fy8dGv+ZDZSaGY3E1MZbW6bD5Ua5G5ZEQHwLi43+fnzyQYpi0WWu9tB2
+Ru4ovpOMOBhoA8vX97cs5XBEOhATfwVJVwsvzJWkD3nVbO9g93WSvRI+4JQBS6Y=
+=HPH+
+-----END PGP SIGNATURE-----

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

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

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

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

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

Added: release/sling/org.apache.sling.testing.sling-mock.core-3.2.0-source-release.zip.asc
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock.core-3.2.0-source-release.zip.asc (added)
+++ release/sling/org.apache.sling.testing.sling-mock.core-3.2.0-source-release.zip.asc Thu Dec  2 19:45:32 2021
@@ -0,0 +1,11 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQEcBAABCgAGBQJhpQpKAAoJEM4rf/Z1146SWNEIAKW6PjsF1lQjEPRecP0XgKY/
+EVjG4ARai0h8bB6D+LKvzMSWfIiW0tioA6wzIC/wZRa8qw06aJJMz1xq5C+Q2Cwl
+6AQARp6FUXJzK3PSBYWFoZ9ZZf6HSee+BE/e0A4tOz24Vn7ivYoAr3NYr4Z2T1vD
+xQa+qvX5+U11AzZWwM4Tl79bpdD0AFbq+bCtmmFDd+4xVc3YOAnIrr5jRljK5wrc
+Tho3JI/pWRMaN50tlG1z1jmRVxfJiz1avgu1HJf7Wdo36b49tYvfcA8I5VzNG50W
+MZul7JYKBBcwNnckjZJn3NL3wbwNshVXmN9BR5YieDfNLSnKHIqeoDxGjmTR/gU=
+=ewYX
+-----END PGP SIGNATURE-----

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

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

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

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

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

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

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

Added: release/sling/org.apache.sling.testing.sling-mock.core-3.2.0-sources.jar.asc
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock.core-3.2.0-sources.jar.asc (added)
+++ release/sling/org.apache.sling.testing.sling-mock.core-3.2.0-sources.jar.asc Thu Dec  2 19:45:32 2021
@@ -0,0 +1,11 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQEcBAABCgAGBQJhpQpLAAoJEM4rf/Z1146Sf3EH+gIGyahwLYlkNCbwDZBWtmIA
+05rOYHvvTz4QVUqyWKzGDHj1XuQQ6u9rLSMCWF4Qq6n5VFCJvqbW/QOBUIZ5Zh7D
+05Si0L0VJ/TrTzYxWC/0+fsxY1ZggMGsysCezXf3xqp2jy220WUy4hmila41PXTe
+ItnE7GZxvjqqkJMUVHJcdFXeH9FHB5owTGSXKAGP+a8Hk4o3ZvWDgL2bREfyqd2U
+eVn1i4JlE2AB6kF6HJxOR1p9JGMRi6fHuNtVXnCQzs3nYzf7/EcIQiOHxRiJ+yvH
+Psw3bf9x5ib7SM9y1+Q3HKOExnyA0jyQnd1pkgZr1tWX8qvG5yo9/QCer8leeas=
+=Cimk
+-----END PGP SIGNATURE-----

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

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

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

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

Added: release/sling/org.apache.sling.testing.sling-mock.core-3.2.0-tests.jar.asc
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock.core-3.2.0-tests.jar.asc (added)
+++ release/sling/org.apache.sling.testing.sling-mock.core-3.2.0-tests.jar.asc Thu Dec  2 19:45:32 2021
@@ -0,0 +1,11 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQEcBAABCgAGBQJhpQpMAAoJEM4rf/Z1146S8eoH/3HhescbWvTuEHUtspr11H7j
+iCuBSHRY0UQLohzvTRT72N4nuaYmzNBMZtJs7jVYNwYRQWiQdjiwpqQI7NkPtwyv
+HaB4Ywqbo27Fl4mXD29Olo0ZMDh5NuxCmwigC7Q3tlNxhjcVyQBoPFU7V+FE7YxS
+8zPPqBdKonVyYpgsjkXtFBbpEBgIj1Lee2lmEupQWQ1aXzMHbh6FNi/9u3bDd13s
+w7YUtWDYDFKuJMwjj8gztgNYYOvsyH9BJq40qA1tLmhH0hKD2jy3UWOfJ57ZVJMS
+T4OVP1aS2VKP3C3XERyQrGHL75eDT5aZpU1RXIY5/vzVRJDHKsBZkTA8bj/6dco=
+=Cf79
+-----END PGP SIGNATURE-----

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

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

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

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

Added: release/sling/org.apache.sling.testing.sling-mock.core-3.2.0.jar.asc
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock.core-3.2.0.jar.asc (added)
+++ release/sling/org.apache.sling.testing.sling-mock.core-3.2.0.jar.asc Thu Dec  2 19:45:32 2021
@@ -0,0 +1,11 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQEcBAABCgAGBQJhpQpJAAoJEM4rf/Z1146SYjEH/0C6CSRFIsTUzyHxDIdkWMCz
+sZ7kuwm8iF17mH5zU7xjQkR1Zd7lj6FAm9KmjzZA11lAX3m3CYQJ5oBERuTKqm24
+1+CFeTvr+lhNktqv6ttlPOKXp/tYN/OMQm94LYoOCzjc5CgeWJXUvrr4zy47uO6V
+91uMKQ0oX21i7TRDlStUOxUMHe9c24K88q+N7vD/3uOgawv/eavwffwMFKeom6PW
+KYQstaFIE14UiAwKv0SIV77Cb/oV8jTGI4S7CSrVNUwJ8apHEBDAMdKMQprqmxNG
+seesvV+97wHa2jZ89ARrEZMCDfHnnxebzihu3+qcWPXvTNX6u1TVH73v6zVwS4k=
+=ODV5
+-----END PGP SIGNATURE-----

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

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

Added: release/sling/org.apache.sling.testing.sling-mock.core-3.2.0.pom
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock.core-3.2.0.pom (added)
+++ release/sling/org.apache.sling.testing.sling-mock.core-3.2.0.pom Thu Dec  2 19:45:32 2021
@@ -0,0 +1,385 @@
+<?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.core</artifactId>
+    <packaging>jar</packaging>
+
+    <name>Apache Sling Testing Sling Mock Core</name>
+
+    <dependencies>
+
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.testing.osgi-mock.core</artifactId>
+            <version>${osgi-mock.version}</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.testing.jcr-mock</artifactId>
+            <version>${jcr-mock.version}</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.testing.resourceresolver-mock</artifactId>
+            <version>${resourceresolver-mock.version}</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.servlet-helpers</artifactId>
+            <version>${servlet-helpers.version}</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.resourcebuilder</artifactId>
+            <version>${resourcebuilder.version}</version>
+            <scope>compile</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.resource</artifactId>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.util.tracker</artifactId>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.models.api</artifactId>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.models.impl</artifactId>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.api</artifactId>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.resourceresolver</artifactId>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.serviceusermapper</artifactId>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.jcr.api</artifactId>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.jcr.resource</artifactId>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.scripting.api</artifactId>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.scripting.core</artifactId>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.commons.mime</artifactId>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.johnzon</groupId>
+            <artifactId>johnzon-core</artifactId>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.commons.classloader</artifactId>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.settings</artifactId>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.i18n</artifactId>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.adapter</artifactId>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.xss</artifactId>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.featureflags</artifactId>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.jackrabbit</groupId>
+            <artifactId>jackrabbit-api</artifactId>
+            <scope>compile</scope>
+        </dependency>
+        <!-- for org.apache.jackrabbit.oak.jcr.observation.filter used in https://github.com/apache/sling-org-apache-sling-jcr-resource/blob/18edb8d7e7106c1e1e3333b89bf4d2a49c686e3b/src/main/java/org/apache/sling/jcr/resource/internal/JcrListenerBaseConfig.java#L33-->
+        <dependency>
+            <groupId>org.apache.jackrabbit</groupId>
+            <artifactId>oak-jcr</artifactId>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+           <groupId>org.apache.commons</groupId>
+           <artifactId>commons-collections4</artifactId>
+           <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>commons-collections</groupId>
+            <artifactId>commons-collections</artifactId>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>commons-io</groupId>
+            <artifactId>commons-io</artifactId>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>commons-lang</groupId>
+            <artifactId>commons-lang</artifactId>
+            <scope>compile</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.contentparser.api</artifactId>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.contentparser.json</artifactId>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.contentparser.xml-jcr</artifactId>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.jackrabbit.vault</groupId>
+            <artifactId>org.apache.jackrabbit.vault</artifactId>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.fsresource</artifactId>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>commons-beanutils</groupId>
+            <artifactId>commons-beanutils</artifactId>
+            <scope>compile</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>javax.servlet</groupId>
+            <artifactId>javax.servlet-api</artifactId>
+            <scope>compile</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.geronimo.specs</groupId>
+            <artifactId>geronimo-atinject_1.0_spec</artifactId>
+            <version>1.0</version>
+            <scope>compile</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.geronimo.specs</groupId>
+            <artifactId>geronimo-json_1.1_spec</artifactId>
+            <version>1.0</version>
+            <scope>compile</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>javax.jcr</groupId>
+            <artifactId>jcr</artifactId>
+            <scope>compile</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.mockito</groupId>
+            <artifactId>mockito-core</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.testing.logging-mock</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.geronimo.specs</groupId>
+            <artifactId>geronimo-annotation_1.3_spec</artifactId>
+             <version>1.0</version>
+            <scope>test</scope>
+        </dependency>
+
+    </dependencies>
+
+    <build>
+        <plugins>
+
+            <!-- Publish test artifact -->
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <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/**</exclude>
+                    </excludes>
+                </configuration>
+             </plugin>
+
+        </plugins>
+    </build>
+
+    <profiles>
+        <profile>
+            <id>latest-resource-bundles</id>
+            <dependencies>
+                <dependency>
+                    <groupId>org.apache.sling</groupId>
+                    <artifactId>org.apache.sling.api</artifactId>
+                    <version>2.22.0</version>
+                    <scope>compile</scope>
+                </dependency>
+                <dependency>
+                    <groupId>org.apache.sling</groupId>
+                    <artifactId>org.apache.sling.resourceresolver</artifactId>
+                    <version>1.7.4</version>
+                    <scope>compile</scope>
+                </dependency>
+                <dependency>
+                    <groupId>org.apache.sling</groupId>
+                    <artifactId>org.apache.sling.serviceusermapper</artifactId>
+                    <version>1.5.2</version>
+                    <scope>compile</scope>
+                </dependency>
+                <dependency>
+                    <groupId>org.apache.sling</groupId>
+                    <artifactId>org.apache.sling.jcr.resource</artifactId>
+                    <version>3.0.22</version>
+                    <scope>compile</scope>
+                </dependency>
+                <dependency>
+                    <groupId>org.apache.jackrabbit</groupId>
+                    <artifactId>jackrabbit-api</artifactId>
+                    <version>2.19.3</version>
+                    <scope>compile</scope>
+                </dependency>
+                <dependency>
+                    <groupId>org.apache.jackrabbit</groupId>
+                    <artifactId>oak-jcr</artifactId>
+                    <version>1.32.0</version>
+                    <scope>compile</scope>
+                </dependency>
+            </dependencies>
+        </profile>
+        <profile>
+            <id>latest-scripting-bundles</id>
+            <dependencies>
+                <dependency>
+                    <groupId>org.apache.sling</groupId>
+                    <artifactId>org.apache.sling.scripting.api</artifactId>
+                    <version>2.2.0</version>
+                    <scope>compile</scope>
+                </dependency>
+                <dependency>
+                    <groupId>org.apache.sling</groupId>
+                    <artifactId>org.apache.sling.scripting.core</artifactId>
+                    <version>2.0.60</version>
+                    <scope>compile</scope>
+                    <exclusions>
+                      <exclusion>
+                        <groupId>org.osgi</groupId>
+                        <artifactId>org.osgi.core</artifactId>
+                      </exclusion>
+                      <exclusion>
+                        <groupId>org.osgi</groupId>
+                        <artifactId>org.osgi.compendium</artifactId>
+                      </exclusion>
+                    </exclusions>
+                </dependency>
+            </dependencies>
+        </profile>
+    </profiles>
+
+</project>

Added: release/sling/org.apache.sling.testing.sling-mock.core-3.2.0.pom.asc
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock.core-3.2.0.pom.asc (added)
+++ release/sling/org.apache.sling.testing.sling-mock.core-3.2.0.pom.asc Thu Dec  2 19:45:32 2021
@@ -0,0 +1,11 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQEcBAABCgAGBQJhpQpKAAoJEM4rf/Z1146SVfEH/1gCJhzlksCN6k67fF2riD/M
+Z2gLhtu819qUQ55XnoYJuMvFDU2O3MCDQRwSl6PWDW+fx6XZlcWo496gBiwBU9Xz
+mGc0W11RHnonEITZzZ12NQ+mNmOuvS2PLBYadgCmbZQcKw9zrskAWR+5gZlllpf4
+nXPehu+xumVcUspmZv+AFumN7VnLqNunDI2gTmDojA/JwevOJV/kuBTr7co9YSt4
+myM1I9SetDrN8WKNL7kfFJeX2IY5Kubc8o0YqvTj96QCeVAzGDwTkCZlbjEX7y3m
+PkuohMddnscGK3SwJhhyiTk1DZiyCAVrkOtOXK4AM/8ZbUDHAJf0eruALSRdySI=
+=ujiu
+-----END PGP SIGNATURE-----

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

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

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

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

Added: release/sling/org.apache.sling.testing.sling-mock.junit4-3.2.0-javadoc.jar.asc
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock.junit4-3.2.0-javadoc.jar.asc (added)
+++ release/sling/org.apache.sling.testing.sling-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
+
+iQEcBAABCgAGBQJhpQpcAAoJEM4rf/Z1146S/+QIANz5zrUhs0VVrAjp3rmyV8nO
+zYm+k1pJyrMjwEuNq2lvqEELg6BYzl2Wr0l78+73AkBdlb19rISt5lR8u1acp2GV
+1DDONJwTnh2ZP8bLAZ5KRH/oMIeTOYg6xpddfsB/pFiC3s8e5pXoRW+YSaqd18lE
+RcIdxTc7hLH7ZVSePNI4P3YdLeN/Fr1No/rgo/yDd3Ec75q/7Rivyqbge7DgwdQ8
+tBtF3R60AFiiF9WsfYxvw2ZL3XCBYrNiUY7uFB8Tjt9JujKBkyBk9vX3KbYS5Lar
+6AWW8TDMzTZq4MhQ8WevSgPKv+DcOfDyg3E52plm7X207rrM3Cc12dC/znbRzXI=
+=7c6S
+-----END PGP SIGNATURE-----

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

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

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

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

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

Added: release/sling/org.apache.sling.testing.sling-mock.junit4-3.2.0-source-release.zip.asc
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock.junit4-3.2.0-source-release.zip.asc (added)
+++ release/sling/org.apache.sling.testing.sling-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
+
+iQEcBAABCgAGBQJhpQpbAAoJEM4rf/Z1146SfG4H/i+7k2cGMMFc6QXF2Au557Sr
+Iuomc6zVHY7b0r7kCofahGukJ23fiI49rWext3eRLyxx4LYdtvPoHRwzOVg1Au7q
+pbfYtVo2NjIzdSwp+o9YRxSYfY0ZHxU+OwejlZu4vpCjVRKAyuqnNL8S8RqOcknb
+Jz7aIT8Vc4HMAwLJyjeo69xNQxJhfoTc54Eg6MFBVEcpLKqSnC2X2aaWjbTVkklP
+ZfwRtqPImDF3NV77BuwJAkmw5xA4xzYxEXvZPLTEUNmJncxMQV0wz6rm9v+acBmR
+X1FUuCyIIrGSaL0kINEKak8utEkMCCsVLhgnQpnsosSuLg9azN3MJcXn2bjSaAE=
+=KIU8
+-----END PGP SIGNATURE-----

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

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

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

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

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

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

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

Added: release/sling/org.apache.sling.testing.sling-mock.junit4-3.2.0-sources.jar.asc
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock.junit4-3.2.0-sources.jar.asc (added)
+++ release/sling/org.apache.sling.testing.sling-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
+
+iQEcBAABCgAGBQJhpQpcAAoJEM4rf/Z1146S97IIAOHY+ToDyajULsf3eb6QXH7N
+g/4F+kLqh5s/oIgytMfoLn56KwAN+6wIN0nA77LjCFscZW3DtmQ0QkFRboA8ggYp
+lZVpfSy2T+mQ57YX+FSQYyMUa43IaCE5XwAeTZOi5uTNViPxM+773xwoq+flN24y
+V3hg5nUuFEJwawPQRvmIko50yXuxSUTl6U6jrf+u+EvpgqmAOpL6OJcpmvit0hiH
+U0VNNmWPcVh18yS0ACnQxaz1DYqjoCTsPfclvglnV9fmdvPQ7cbnSA1LT2yvY8fE
+ipzAmIf1iT3+L4YP1llPs5cdcSJuBOqpYjnFZyEdyn9qNwh7ZoX2UOSuISO2NFo=
+=zPGc
+-----END PGP SIGNATURE-----

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

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

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

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

Added: release/sling/org.apache.sling.testing.sling-mock.junit4-3.2.0.jar.asc
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock.junit4-3.2.0.jar.asc (added)
+++ release/sling/org.apache.sling.testing.sling-mock.junit4-3.2.0.jar.asc Thu Dec  2 19:45:32 2021
@@ -0,0 +1,11 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQEcBAABCgAGBQJhpQpaAAoJEM4rf/Z1146SO0oH/jam/LkhNFrmb/7ONsAjK1+1
+yrjveqfCM6T9mblrPwMOM6teeof4sMqioHFLp+TMdcIOSDE307WEYCfucXYlmOfS
+6PXHF6s91kJXmvnWgdBhPKDLVhGeJB30944KrEn1sKZ9g9jE7G2vFcfNwPsLD6l4
+om4NfkZDsqc862rdeSrRA9K2om5hm94fdpm8iSMkaweocZmbkgWOTcyS4M2DpKCn
+Mv8ibjLbCt9uhfiOj5DgOtFdwcBfHDlKBsoZxTXXis6r+Vl14CZ4NB+OUgss0ois
+cCO7Ig1KD7v9TGqKmsJbtFsfj65koB0N6Hc1i1H6qAk70xKNG135jmL+v3/Jj70=
+=TyW1
+-----END PGP SIGNATURE-----

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

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

Added: release/sling/org.apache.sling.testing.sling-mock.junit4-3.2.0.pom
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock.junit4-3.2.0.pom (added)
+++ release/sling/org.apache.sling.testing.sling-mock.junit4-3.2.0.pom Thu Dec  2 19:45:32 2021
@@ -0,0 +1,91 @@
+<?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.junit4</artifactId>
+    <packaging>jar</packaging>
+
+    <name>Apache Sling Testing Sling Mock JUnit 4</name>
+
+    <dependencies>
+
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.testing.sling-mock.core</artifactId>
+            <version>3.2.0</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.testing.sling-mock.core</artifactId>
+            <version>3.2.0</version>
+            <classifier>tests</classifier>
+            <scope>test</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.testing.osgi-mock.junit4</artifactId>
+            <version>${osgi-mock.version}</version>
+            <scope>compile</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.mockito</groupId>
+            <artifactId>mockito-core</artifactId>
+            <scope>test</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.sling-mock.junit4-3.2.0.pom.asc
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock.junit4-3.2.0.pom.asc (added)
+++ release/sling/org.apache.sling.testing.sling-mock.junit4-3.2.0.pom.asc Thu Dec  2 19:45:32 2021
@@ -0,0 +1,11 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQEcBAABCgAGBQJhpQpbAAoJEM4rf/Z1146SUP4H/3g+OLdwHv9hnuo1STRDh4PQ
+yrsIhEyKZKmHOPA+uNwIsa9lgAHYSr5GhBs0EG6RkxCGIBmsjICNG48PH1wiajz+
+3qCIZ2JmENlKjRLb4kQE/M4qe18CXbCloedAq2Mg8rVMrwegiDsJETMz7tbK6VWe
+ZEQDzRu1DHYgFUDx9v9i0S4p7PeNZ8WwlTl0diTN0J1rk6VKPZgt5batqz8OzxD7
+JiSGfDJmIXQFn2iMCwa9IjwOT2Ha0Im7hdbB05aFymrx0BF/g2qEmpVD/OGzZE3q
+VeiLmfP6WKESjan1dwm/WVz3qPEvfTAFwLWAzh9x0Yu2oWELgNFrooRRGEoXyJI=
+=7JgV
+-----END PGP SIGNATURE-----

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

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

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

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

Added: release/sling/org.apache.sling.testing.sling-mock.junit5-3.2.0-javadoc.jar.asc
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock.junit5-3.2.0-javadoc.jar.asc (added)
+++ release/sling/org.apache.sling.testing.sling-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
+
+iQEcBAABCgAGBQJhpQpsAAoJEM4rf/Z1146SXfgH+QGN5e/S4FSQkUTD7GWv0IjF
+7Yg9srYVYo8kh1ryvJ+1WQe4D/+vRfmU/30UQ4YcsyfGrCrQD0Jd/4cpbBkZ+KnY
+ueQ/oVM+UpLNPUMv78NORy2AosRgWlg5tX5xeaXxE/3JPHKMhaVoLlKTtE4gZLVc
+kUG+YgzoEsw8kjdpBh7HgnSxAW0DioX6/75Z+ikUFy3UOvQkJygC10exh2yrmV3X
+jjTUW3ED/Fh1jtP8Tdr6TcmMM3ISc0PZgv1UvvdN7EIhR+/LJ6FE5GZfY6GmDL3p
+KoLDRISRaD2jiNDhUBdvIAsEjp677m1KTyXf6y0YduzR6QN/ZH0a2m6SYh3dtzE=
+=FxcN
+-----END PGP SIGNATURE-----

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

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

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

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

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

Added: release/sling/org.apache.sling.testing.sling-mock.junit5-3.2.0-source-release.zip.asc
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock.junit5-3.2.0-source-release.zip.asc (added)
+++ release/sling/org.apache.sling.testing.sling-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
+
+iQEcBAABCgAGBQJhpQprAAoJEM4rf/Z1146Sxm4IAKoerr+mc4vsc5hcl2jJpsC6
+0qaLWlOx/zORAXWI+xQyMhi3x34enlZf1EqIyJHmvcTnbXhccxaFRm0KoKcm/CK+
+3WahskB+ONtNo+aZACiOUOzhj0IWhctJJEsCga+Qwi0z/qdlS2PhIuFwlKxtLrkE
+8TVYDCO63GDZWPIogvDCJuZ+zBNJiqfYwN41hqVO43KGcLHxh7xIBA9EIWNprqvI
+CyYBTzRLxP7URGcJZw1vR2sazs8N7QTOKQwpbpYdB2tYg4QQpLsCXh9JBcA2BAxG
+uiuIiXKtb3Sa1s/WEk+OKdtAB1PzBmFvTUpd4jTLqO7EmeKMEVTn+GAABAweEhs=
+=E3GG
+-----END PGP SIGNATURE-----

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

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

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

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

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

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

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

Added: release/sling/org.apache.sling.testing.sling-mock.junit5-3.2.0-sources.jar.asc
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock.junit5-3.2.0-sources.jar.asc (added)
+++ release/sling/org.apache.sling.testing.sling-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
+
+iQEcBAABCgAGBQJhpQpsAAoJEM4rf/Z1146SF4kH/AuN2P97Z2nlKpna/P7+ymYr
+rCy8Nfbcibt1Io1gATPVxnqkojyW7HilCLoCWFq3sRl3ikHSzKm2i/uzE6nfzlrS
+xal01WGk4ySW75aFPrsvgVSfWup5gliS8wKCQlX7IaBHHdRLlPxm5nRLABG+0k38
+Gk2tUbLIVVhWu9+CkVkWaRLuMX+OUqcgVzoFN5OjzE1n/huCODR/Pz1t78hsRg6c
+yZe6L0XAqwqrTxCXpP14Wp3e2E+Pt4Y9HyNb7/RD3ygy/eZcnWZbd/DNM0UX9NQq
+VCGic8kd4QBdlpg/c0N/0dCcvgeYtcn55yVbi10UzRywTZWFIyqnMO8PPmanj+g=
+=iUOK
+-----END PGP SIGNATURE-----

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

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

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

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

Added: release/sling/org.apache.sling.testing.sling-mock.junit5-3.2.0.jar.asc
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock.junit5-3.2.0.jar.asc (added)
+++ release/sling/org.apache.sling.testing.sling-mock.junit5-3.2.0.jar.asc Thu Dec  2 19:45:32 2021
@@ -0,0 +1,11 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQEcBAABCgAGBQJhpQpqAAoJEM4rf/Z1146STgMIANJrE1/K/Dp3SDIx/vERjU4f
+1j43xdBvbH0jwALm1NVkNKMd9Pdx9lmIQcK5ncefYnnoSnCc7aXidsMyWY7q44bE
+/A07fNhKZjo6hWTfH0p5FJXyRZmGVk4QwSwaudh3aUk8rQTykosS1CuTcoWZ7dDf
+KmhiHEjmz+wIIffxM8aljRTuJbM4Y6RbVlE5Qtg2Lx4sD43Ld+OCDJKtWsYnyR5e
+HukSjh846g91qxOBONoya7mgbFadJVK669kMX5NpfPPAjB6hqGq/we2LFIuOmGZ8
+jE0mTBLbo6iHY5mg06FyEzEJpP80M3Amm2XAhHVz/A9dXpbMtZISfuMwrhfUbQw=
+=CeUX
+-----END PGP SIGNATURE-----

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

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

Added: release/sling/org.apache.sling.testing.sling-mock.junit5-3.2.0.pom
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock.junit5-3.2.0.pom (added)
+++ release/sling/org.apache.sling.testing.sling-mock.junit5-3.2.0.pom Thu Dec  2 19:45:32 2021
@@ -0,0 +1,125 @@
+<?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.junit5</artifactId>
+    <packaging>jar</packaging>
+
+    <name>Apache Sling Testing Sling Mock JUnit 5</name>
+
+    <dependencies>
+
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.testing.sling-mock.core</artifactId>
+            <version>3.2.0</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.testing.sling-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>
+
+            <plugin>
+                <groupId>org.apache.rat</groupId>
+                <artifactId>apache-rat-plugin</artifactId>
+                <configuration>
+                    <excludes>
+                        <exclude>src/test/resources/**</exclude>
+                    </excludes>
+                </configuration>
+             </plugin>
+
+        </plugins>
+    </build>
+
+</project>

Added: release/sling/org.apache.sling.testing.sling-mock.junit5-3.2.0.pom.asc
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock.junit5-3.2.0.pom.asc (added)
+++ release/sling/org.apache.sling.testing.sling-mock.junit5-3.2.0.pom.asc Thu Dec  2 19:45:32 2021
@@ -0,0 +1,11 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQEcBAABCgAGBQJhpQpqAAoJEM4rf/Z1146SmwUIAMXsYXbWJCyQcQbhNQDO+MzB
+Su8JG5cl+2eMAdW2OV1E+Iu4Ik5KUpT+DTxXoMfsW18lt3VCEyWGTvp/dqhOVF5v
+Y9QU01Z34wSDf102elTSKCsu86lQ092tWEAaj51qpqNnLGoEiYPx0u3afcfKn6M0
+R1kP8rg+LVa25ZThBhe48JfHFFimXEPQAWqw3+civU/+J14VKxbjLMyeuazNfsCY
+Cr+aEAPp7jW+HzLq1PrzMcqN0i6q7N7VGO+pm+2YvsD/R0JjgJpmc3VjkNWufjox
+9bsm+DGcGRZBZE0oMTRUZjD2ioWeS31U6V0DRi2/VlmJIckwMSSzr0ZFKs9hlus=
+=LEmY
+-----END PGP SIGNATURE-----

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

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

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

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

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

Added: release/sling/org.apache.sling.testing.sling-mock.parent-3.2.0-source-release.zip.asc
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock.parent-3.2.0-source-release.zip.asc (added)
+++ release/sling/org.apache.sling.testing.sling-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
+
+iQEcBAABCgAGBQJhpQojAAoJEM4rf/Z1146SStkIAIC13KQjLR1FzCQeyuHLxwaT
+4GqfqtnAnklgEvj1m7EkiX0RdFvD+wVgqgvP9v1rwpl4L1u2gyqu0Aggoh2OGk7H
+bUQpSS8Uw/rXcYJnWDgKag51lDiAWWbVf5ntO9Q7G6KOY8mFEGg70Bw9XLq8VH9Z
+9xJPdgiWkOD10M/bctIAEm+OpEzICNetLotfIhsIeI1p2avpK+NrAC2+1O+PKoH3
+Vsnb4ISs00FYG4X4kEp+KW51ajBxmppbFxMeKyT+0WfrosehErYiQLudqwfmNcrF
+i0o2oQseYfoZE7tCmK737P72xOgWtSEkWMBx+UpK+3YjYdpmnvJqEUpydVeiIxk=
+=ovEF
+-----END PGP SIGNATURE-----

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

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

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

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

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

Added: release/sling/org.apache.sling.testing.sling-mock.parent-3.2.0.pom
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock.parent-3.2.0.pom (added)
+++ release/sling/org.apache.sling.testing.sling-mock.parent-3.2.0.pom Thu Dec  2 19:45:32 2021
@@ -0,0 +1,312 @@
+<?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.sling-mock.parent</artifactId>
+    <version>3.2.0</version>
+    <packaging>pom</packaging>
+
+    <name>Apache Sling Testing Sling Mock Parent</name>
+    <description>Mock implementation of selected Sling APIs.</description>
+
+    <properties>
+        <osgi-mock.version>3.2.0</osgi-mock.version>
+        <jcr-mock.version>1.5.4</jcr-mock.version>
+        <resourceresolver-mock.version>1.2.2</resourceresolver-mock.version>
+        <logging-mock.version>2.0.0</logging-mock.version>
+        <servlet-helpers.version>1.4.2</servlet-helpers.version>
+        <resourcebuilder.version>1.0.4</resourcebuilder.version>
+
+        <project.build.outputTimestamp>2021-11-29T17:11:18Z</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>
+
+        <dependency>
+            <groupId>com.google.guava</groupId>
+            <artifactId>guava</artifactId>
+            <version>15.0</version>
+            <scope>test</scope>
+        </dependency>
+
+    </dependencies>
+
+    <dependencyManagement>
+      <dependencies>
+
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.resource</artifactId>
+            <version>1.0.0</version>
+        </dependency>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.util.tracker</artifactId>
+            <version>1.5.1</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.models.api</artifactId>
+            <version>1.3.6</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.models.impl</artifactId>
+            <version>1.4.6</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.api</artifactId>
+            <version>2.16.4</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.resourceresolver</artifactId>
+            <version>1.5.34</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.serviceusermapper</artifactId>
+            <version>1.3.6</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.jcr.api</artifactId>
+            <version>2.4.0</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.jcr.resource</artifactId>
+            <version>3.0.8</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.scripting.api</artifactId>
+            <version>2.2.0</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.scripting.core</artifactId>
+            <version>2.0.54</version>
+            <exclusions>
+              <exclusion>
+                <groupId>org.osgi</groupId>
+                <artifactId>org.osgi.core</artifactId>
+              </exclusion>
+              <exclusion>
+                <groupId>org.osgi</groupId>
+                <artifactId>org.osgi.compendium</artifactId>
+              </exclusion>
+            </exclusions>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.commons.mime</artifactId>
+            <version>2.1.10</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.johnzon</groupId>
+            <artifactId>johnzon-core</artifactId>
+            <version>1.1.1</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.commons.classloader</artifactId>
+            <version>1.4.2</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.settings</artifactId>
+            <version>1.3.8</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.i18n</artifactId>
+            <version>2.5.10</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.adapter</artifactId>
+            <version>2.1.10</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.xss</artifactId>
+            <version>2.0.0</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.featureflags</artifactId>
+            <version>1.2.2</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.jackrabbit</groupId>
+            <artifactId>jackrabbit-api</artifactId>
+            <version>2.16.0</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.jackrabbit</groupId>
+            <artifactId>oak-jcr</artifactId>
+            <version>1.8.2</version>
+        </dependency>
+
+        <dependency>
+           <groupId>org.apache.commons</groupId>
+           <artifactId>commons-collections4</artifactId>
+           <version>4.1</version>
+        </dependency>
+        <dependency>
+            <groupId>commons-collections</groupId>
+            <artifactId>commons-collections</artifactId>
+            <version>3.2.2</version>
+        </dependency>
+        <dependency>
+            <groupId>commons-io</groupId>
+            <artifactId>commons-io</artifactId>
+            <version>2.5</version>
+        </dependency>
+        <dependency>
+            <groupId>commons-lang</groupId>
+            <artifactId>commons-lang</artifactId>
+            <version>2.6</version>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.contentparser.api</artifactId>
+            <version>2.0.0</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.contentparser.json</artifactId>
+            <version>2.0.0</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.contentparser.xml-jcr</artifactId>
+            <version>2.0.0</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.jackrabbit.vault</groupId>
+            <artifactId>org.apache.jackrabbit.vault</artifactId>
+            <version>3.1.44</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.fsresource</artifactId>
+            <version>2.2.0</version>
+        </dependency>
+        <dependency>
+            <groupId>commons-beanutils</groupId>
+            <artifactId>commons-beanutils</artifactId>
+            <version>1.8.3</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>${logging-mock.version}</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.sling-mock.reactor-3.2.0</tag>
+    <connection>scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-testing-sling-mock.git</connection>
+    <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-testing-sling-mock.git</developerConnection>
+    <url>https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-testing-sling-mock.git</url>
+  </scm>
+</project>

Added: release/sling/org.apache.sling.testing.sling-mock.parent-3.2.0.pom.asc
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock.parent-3.2.0.pom.asc (added)
+++ release/sling/org.apache.sling.testing.sling-mock.parent-3.2.0.pom.asc Thu Dec  2 19:45:32 2021
@@ -0,0 +1,11 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQEcBAABCgAGBQJhpQojAAoJEM4rf/Z1146SmVsH/3xLpm21sCW79/yPWe5F+3wg
+0hcyGwlUhtd8fqALnnMmvINBRvvOrBbaWBVPo71Jkp7AZ/1YH65iUPSgkW4y+dX3
+Cd/faAryDcA4EC49VayWESVtnY67a15yhPpN+mmDFchd737kZqf0gQ6JPS1oeKKL
+jCgYUrEA37kJpbhTG+h6RzGImBWQ92OP1hTVRo2w/Y4zi0xjke2H6OEV6tmHvXha
+lSDdzmQfbcqZZfRRf77QdV37caG0wFJXKLSgaOlkEpHQEfkaMaQa9DzT6Vetrey5
+zoZDIedws11HcPu3GtqD4UON3YpwpRrVO1UJN58lv4/MvzFCvGTCSsCYteqeX1s=
+=3NoS
+-----END PGP SIGNATURE-----

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

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