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 2017/10/17 12:52:29 UTC

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

Added: release/sling/org.apache.sling.testing.osgi-mock-2.3.4.pom
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock-2.3.4.pom (added)
+++ release/sling/org.apache.sling.testing.osgi-mock-2.3.4.pom Tue Oct 17 12:52:28 2017
@@ -0,0 +1,209 @@
+<?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</artifactId>
+    <groupId>org.apache.sling</groupId>
+    <version>30</version>
+    <relativePath>pom.xml</relativePath>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <artifactId>org.apache.sling.testing.osgi-mock</artifactId>
+  <packaging>bundle</packaging>
+  <name>Apache Sling Testing OSGi Mock</name>
+  <version>2.3.4</version>
+  <description>Mock implementation of selected OSGi APIs.</description>
+  <scm>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/sling/tags/org.apache.sling.testing.osgi-mock-2.3.4</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/sling/tags/org.apache.sling.testing.osgi-mock-2.3.4</developerConnection>
+    <url>http://svn.apache.org/viewvc/sling/tags/org.apache.sling.testing.osgi-mock-2.3.4</url>
+  </scm>
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.felix</groupId>
+        <artifactId>maven-bundle-plugin</artifactId>
+        <extensions>true</extensions>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.rat</groupId>
+        <artifactId>apache-rat-plugin</artifactId>
+        <configuration>
+          <excludes>
+            <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>
+        <version>2.4.3</version>
+        <executions>
+          <execution>
+            <phase>package</phase>
+            <goals>
+              <goal>shade</goal>
+            </goals>
+            <configuration>
+              <createSourcesJar>true</createSourcesJar>
+              <shadeSourcesContent>true</shadeSourcesContent>
+              <artifactSet>
+                <includes>
+                  <include>org.apache.sling:org.apache.sling.commons.osgi</include>
+                  <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.sling.commons.osgi</pattern>
+                  <shadedPattern>osgimock.org.apache.sling.commons.osgi</shadedPattern>
+                </relocation>
+                <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.sling:org.apache.sling.commons.osgi</artifact>
+                  <includes>
+                    <include>org/apache/sling/commons/osgi/ServiceUtil*</include>
+                    <include>org/apache/sling/commons/osgi/Order*</include>
+                  </includes>
+                </filter>
+                <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>osgi.core</artifactId>
+      <version>6.0.0</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.osgi</groupId>
+      <artifactId>osgi.cmpn</artifactId>
+      <version>6.0.0</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.google.guava</groupId>
+      <artifactId>guava</artifactId>
+      <version>15.0</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-lang3</artifactId>
+      <version>3.0.1</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>commons-io</groupId>
+      <artifactId>commons-io</artifactId>
+      <version>2.4</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-api</artifactId>
+      <version>1.7.6</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.reflections</groupId>
+      <artifactId>reflections</artifactId>
+      <version>0.9.9</version>
+      <scope>compile</scope>
+      <exclusions>
+        <exclusion>
+          <artifactId>slf4j-api</artifactId>
+          <groupId>org.slf4j</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>
+      </exclusions>
+    </dependency>
+    <dependency>
+      <groupId>org.mockito</groupId>
+      <artifactId>mockito-all</artifactId>
+      <version>1.9.5</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>4.12</version>
+      <scope>compile</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.osgi</groupId>
+      <artifactId>osgi.annotation</artifactId>
+      <version>6.0.1</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.osgi</groupId>
+      <artifactId>org.osgi.service.component.annotations</artifactId>
+      <version>1.3.0</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.osgi</groupId>
+      <artifactId>org.osgi.service.metatype.annotations</artifactId>
+      <version>1.3.0</version>
+      <scope>provided</scope>
+    </dependency>
+  </dependencies>
+</project>
+

Added: release/sling/org.apache.sling.testing.osgi-mock-2.3.4.pom.asc
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock-2.3.4.pom.asc (added)
+++ release/sling/org.apache.sling.testing.osgi-mock-2.3.4.pom.asc Tue Oct 17 12:52:28 2017
@@ -0,0 +1,10 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQEcBAABAgAGBQJZ38zGAAoJEM4rf/Z1146SQAsIAK6vzvTwize4eZlGg+hMR/Oa
+mwqWYjiOmplKfR+Y/C7Ls//jscfUAKsGo0ZjnaNs73wgWUagf81xLwMayNEWf+Fd
+qIcHvXaFgv5R4mWRu3fylqOwuYSSVjcti/WEhTv0OZCKCDGz9J32JzSo3d8aXo+4
+1DR5U4i2QwWo75yCD3fZdO3g4t8IMJLPYouSu2l657RBQU/drI4rmKoWxO4soX5B
+JYDAvrxhPipLlofvxZruKPtMnwMfKoO2+pUhF0vZuMoQ5+c3AjGWMv0kbp6GtsFB
+OYi3VlyX4KLh6yaQbtCZSJvoT1fPI7pM9LvlJSUAi0Ww4gficQVYTW5h3T/VafI=
+=saRC
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.testing.osgi-mock-2.3.4.pom.md5
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock-2.3.4.pom.md5 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock-2.3.4.pom.md5 Tue Oct 17 12:52:28 2017
@@ -0,0 +1 @@
+62d646b548a2b69cd476b4cb65f47f55
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.osgi-mock-2.3.4.pom.sha1
==============================================================================
--- release/sling/org.apache.sling.testing.osgi-mock-2.3.4.pom.sha1 (added)
+++ release/sling/org.apache.sling.testing.osgi-mock-2.3.4.pom.sha1 Tue Oct 17 12:52:28 2017
@@ -0,0 +1 @@
+7b77d3b192e36d049a5d5687c6777e56f913eb43
\ No newline at end of file

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

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

Added: release/sling/org.apache.sling.testing.resourceresolver-mock-1.1.20-javadoc.jar.asc
==============================================================================
--- release/sling/org.apache.sling.testing.resourceresolver-mock-1.1.20-javadoc.jar.asc (added)
+++ release/sling/org.apache.sling.testing.resourceresolver-mock-1.1.20-javadoc.jar.asc Tue Oct 17 12:52:28 2017
@@ -0,0 +1,10 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQEcBAABAgAGBQJZ38wMAAoJEM4rf/Z1146S2hYIALpMCvkbPDZkqa5MPT6D1CuU
+UjfgMPLevHS3FJ7ub4IqKn59Mb/48teg/dT6q/qqckAl/osiZb6PLlubcUjfL2MB
+ATidUI3XUFSjxZQgj+wbelpae4aJk3TiD55cweyCsoEh2U+Rh2OgnAuGwZ4GJ8/g
+mhU+5Q9ek2EE5TFnjazfTGu2g27g8hgGpZV0l1TUmYVdxa7eV3OUxpGiuHVKl6yS
+g66Xy0q6R1YdVxwY9BE0cAx2DIEWCjWVOMwMXNh6qjrZ6LlykUyagQVA5xDZoFtO
+ahRnFq+DFLNXYkb066f68CWdFyxtdgKgRp451rs0/VoVT+5VI/9WNrDAMDAUMW0=
+=wS5o
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.testing.resourceresolver-mock-1.1.20-javadoc.jar.md5
==============================================================================
--- release/sling/org.apache.sling.testing.resourceresolver-mock-1.1.20-javadoc.jar.md5 (added)
+++ release/sling/org.apache.sling.testing.resourceresolver-mock-1.1.20-javadoc.jar.md5 Tue Oct 17 12:52:28 2017
@@ -0,0 +1 @@
+05b288dacafed2dee802e0523672ebd3
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.resourceresolver-mock-1.1.20-javadoc.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.testing.resourceresolver-mock-1.1.20-javadoc.jar.sha1 (added)
+++ release/sling/org.apache.sling.testing.resourceresolver-mock-1.1.20-javadoc.jar.sha1 Tue Oct 17 12:52:28 2017
@@ -0,0 +1 @@
+8abeffc98b03814a1842cc951790b4a0580be44c
\ No newline at end of file

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

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

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

Added: release/sling/org.apache.sling.testing.resourceresolver-mock-1.1.20-source-release.zip.asc
==============================================================================
--- release/sling/org.apache.sling.testing.resourceresolver-mock-1.1.20-source-release.zip.asc (added)
+++ release/sling/org.apache.sling.testing.resourceresolver-mock-1.1.20-source-release.zip.asc Tue Oct 17 12:52:28 2017
@@ -0,0 +1,10 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQEcBAABAgAGBQJZ38wMAAoJEM4rf/Z1146SItgH/1Csw4IDnM9CA6bJ9WD3wLMw
+t4dWx+9nDuDh6h3UrY9rrnrlIpTjifa9cNXfagUeB3vWRRYY/lBxPJtdwJo2MAz7
+Ylm5Pj2i9IRLXIIJYToGtfUsGUNk9T//Dz6Tj7N3Ug/HHmQ+TqOe4EWpVyw/yRtv
+dUukoDzWcC83KPC1hmX5ZmlspBI4LRRimcLWrbdAYA9/4tmQ4FyCb4dPlaaohto6
+6CIeLHIy2mcA+F2yOhE0cfQdgaRP/jqLj7LPArAyZGVtXnWRnL+gLmDV4iZSE3hm
+KFq0sqMzI42Iw5HUcHYkG8Crcs546n6XPP04P4BwpqHacje3ax+Pwy/2P8Desb8=
+=Iiwk
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.testing.resourceresolver-mock-1.1.20-source-release.zip.md5
==============================================================================
--- release/sling/org.apache.sling.testing.resourceresolver-mock-1.1.20-source-release.zip.md5 (added)
+++ release/sling/org.apache.sling.testing.resourceresolver-mock-1.1.20-source-release.zip.md5 Tue Oct 17 12:52:28 2017
@@ -0,0 +1 @@
+6b214a68419df332603b3b6ab5b432f6
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.resourceresolver-mock-1.1.20-source-release.zip.sha1
==============================================================================
--- release/sling/org.apache.sling.testing.resourceresolver-mock-1.1.20-source-release.zip.sha1 (added)
+++ release/sling/org.apache.sling.testing.resourceresolver-mock-1.1.20-source-release.zip.sha1 Tue Oct 17 12:52:28 2017
@@ -0,0 +1 @@
+bb97afa3e537c4fecdf5ca6bc3eb16b185206db8
\ No newline at end of file

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

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

Added: release/sling/org.apache.sling.testing.resourceresolver-mock-1.1.20-sources.jar.asc
==============================================================================
--- release/sling/org.apache.sling.testing.resourceresolver-mock-1.1.20-sources.jar.asc (added)
+++ release/sling/org.apache.sling.testing.resourceresolver-mock-1.1.20-sources.jar.asc Tue Oct 17 12:52:28 2017
@@ -0,0 +1,10 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQEcBAABAgAGBQJZ38wMAAoJEM4rf/Z1146SFSoIAJ1ftC/Uxr1lC6VNI1rN0Yvn
+CsK1w3aDZNUgVo+4HEIsV6F96HNS5KVZYSkMKqstYThqEMFOx3seW4yfOTmqEhTo
+EpgC2Hp3c2noGEfq7XBUQIJ7n0SU2diHCBKcbfIUXAxxLewvCW5wphUpo3lgpJRY
+Y48L5YBpMZ/YWqmC+ibPvray1iWEGsoMi55A3BxUk5midBbg7OGUtK4ESJoKaegk
+z2o5Dmtrri610LSHtAlHUZwm+6tA2RTLw49IY2wAX4MUc73wV3E1d9DarpiVbQC+
+Rg6EOJhTINT7TPU/1Y+nG8IQrBs3zqLsCG+NlZsZGffPVuvgNVCLp0vM+CPKCgQ=
+=Utxh
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.testing.resourceresolver-mock-1.1.20-sources.jar.md5
==============================================================================
--- release/sling/org.apache.sling.testing.resourceresolver-mock-1.1.20-sources.jar.md5 (added)
+++ release/sling/org.apache.sling.testing.resourceresolver-mock-1.1.20-sources.jar.md5 Tue Oct 17 12:52:28 2017
@@ -0,0 +1 @@
+62c2966dd11351c0cfc1c8a6e16551da
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.resourceresolver-mock-1.1.20-sources.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.testing.resourceresolver-mock-1.1.20-sources.jar.sha1 (added)
+++ release/sling/org.apache.sling.testing.resourceresolver-mock-1.1.20-sources.jar.sha1 Tue Oct 17 12:52:28 2017
@@ -0,0 +1 @@
+97b44c6986c2a10174463c60f765531ce48e5012
\ No newline at end of file

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

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

Added: release/sling/org.apache.sling.testing.resourceresolver-mock-1.1.20.jar.asc
==============================================================================
--- release/sling/org.apache.sling.testing.resourceresolver-mock-1.1.20.jar.asc (added)
+++ release/sling/org.apache.sling.testing.resourceresolver-mock-1.1.20.jar.asc Tue Oct 17 12:52:28 2017
@@ -0,0 +1,10 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQEcBAABAgAGBQJZ38wLAAoJEM4rf/Z1146SgxIH/ieJIQ0Ic5EiH93bAghf8GYl
+e7aM9k2a13LBswWbQzdfcik+2aXr+U8N8lhTFyDAyrVgJ3NAMyfTlN5eRQZLRIWW
+EHddEL733MNBuoVl7SdEWA6Ru+MNhHfVz6BmVa/fxn0WZDdWIKRCAWxiyCgEfwPn
+ZjSraSt8ujYoHMSpx7Wj89D89yId+FOZ/Hqd9hhO5WV6fg6MaDJo3rVOMJuDTgBH
+NRm9WCKoN6DRi7iEt/TU/v4mxdG6wXGby2mgFNt+UcRgaudXmiMPmmwLdLY6iNw1
+6yXiN6pRVztja6KVrkOqz7DyHFMF2NWKNJP47aQTN5lUA+QXJH0MC6UQTRf0AAg=
+=68YL
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.testing.resourceresolver-mock-1.1.20.jar.md5
==============================================================================
--- release/sling/org.apache.sling.testing.resourceresolver-mock-1.1.20.jar.md5 (added)
+++ release/sling/org.apache.sling.testing.resourceresolver-mock-1.1.20.jar.md5 Tue Oct 17 12:52:28 2017
@@ -0,0 +1 @@
+abe2fb287fbdc30573a9c34b9403047e
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.resourceresolver-mock-1.1.20.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.testing.resourceresolver-mock-1.1.20.jar.sha1 (added)
+++ release/sling/org.apache.sling.testing.resourceresolver-mock-1.1.20.jar.sha1 Tue Oct 17 12:52:28 2017
@@ -0,0 +1 @@
+f242041f0160391a29081c5a443497e1a39c1fec
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.resourceresolver-mock-1.1.20.pom
==============================================================================
--- release/sling/org.apache.sling.testing.resourceresolver-mock-1.1.20.pom (added)
+++ release/sling/org.apache.sling.testing.resourceresolver-mock-1.1.20.pom Tue Oct 17 12:52:28 2017
@@ -0,0 +1,162 @@
+<?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/maven-v4_0_0.xsd">
+
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.apache.sling</groupId>
+        <artifactId>sling</artifactId>
+        <version>30</version>
+        <relativePath />
+    </parent>
+
+    <artifactId>org.apache.sling.testing.resourceresolver-mock</artifactId>
+    <version>1.1.20</version>
+
+    <name>Apache Sling Testing Resource Resolver Mock</name>
+    <description>
+        Mock for the resource resolver / factory for easier testing.
+    </description>
+
+    <scm>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/sling/tags/org.apache.sling.testing.resourceresolver-mock-1.1.20</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/sling/tags/org.apache.sling.testing.resourceresolver-mock-1.1.20</developerConnection>
+        <url>http://svn.apache.org/viewvc/sling/tags/org.apache.sling.testing.resourceresolver-mock-1.1.20</url>
+    </scm>
+
+    <reporting>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-javadoc-plugin</artifactId>
+                <configuration>
+                    <excludePackageNames>
+                        org.apache.sling.testing.resourceresolver
+                    </excludePackageNames>
+                </configuration>
+            </plugin>
+        </plugins>
+    </reporting>
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.api</artifactId>
+            <version>2.4.0</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.compendium</artifactId>
+            <version>4.1.0</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>javax.servlet</groupId>
+            <artifactId>servlet-api</artifactId>
+            <version>2.4</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>commons-io</groupId>
+            <artifactId>commons-io</artifactId>
+            <version>2.4</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.jackrabbit</groupId>
+            <artifactId>jackrabbit-jcr-commons</artifactId>
+            <version>2.5.3</version>
+            <scope>compile</scope>
+        </dependency>
+        <!-- testing -->
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>com.google.guava</groupId>
+            <artifactId>guava</artifactId>
+            <version>15.0</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.mockito</groupId>
+            <artifactId>mockito-core</artifactId>
+            <version>2.3.7</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.commons</groupId>
+            <artifactId>commons-lang3</artifactId>
+            <version>3.2</version>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
+    
+    <!-- Profiles to run unit tests against different Sling API versions -->
+    <profiles>
+        <profile>
+            <id>api-2.5</id>
+            <dependencies>
+            <dependency>
+                <groupId>org.apache.sling</groupId>
+                <artifactId>org.apache.sling.api</artifactId>
+                <version>2.5.0</version>
+                <scope>provided</scope>
+            </dependency>
+            </dependencies>
+        </profile>
+        <profile>
+            <id>api-2.6</id>
+            <dependencies>
+            <dependency>
+                <groupId>org.apache.sling</groupId>
+                <artifactId>org.apache.sling.api</artifactId>
+                <version>2.6.0</version>
+                <scope>provided</scope>
+            </dependency>
+            </dependencies>
+        </profile>
+        <profile>
+            <id>api-2.7</id>
+            <dependencies>
+            <dependency>
+                <groupId>org.apache.sling</groupId>
+                <artifactId>org.apache.sling.api</artifactId>
+                <version>2.7.0</version>
+                <scope>provided</scope>
+            </dependency>
+            </dependencies>
+        </profile>
+        <profile>
+            <id>api-2.8</id>
+            <dependencies>
+            <dependency>
+                <groupId>org.apache.sling</groupId>
+                <artifactId>org.apache.sling.api</artifactId>
+                <version>2.8.0</version>
+                <scope>provided</scope>
+            </dependency>
+            </dependencies>
+        </profile>
+    </profiles>
+    
+</project>

Added: release/sling/org.apache.sling.testing.resourceresolver-mock-1.1.20.pom.asc
==============================================================================
--- release/sling/org.apache.sling.testing.resourceresolver-mock-1.1.20.pom.asc (added)
+++ release/sling/org.apache.sling.testing.resourceresolver-mock-1.1.20.pom.asc Tue Oct 17 12:52:28 2017
@@ -0,0 +1,10 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQEcBAABAgAGBQJZ38wLAAoJEM4rf/Z1146S+UsIAIg2RFtw1X4sKl+rNDTmfrXv
+YitZ7c3T3cUNPVEP/QIiEpfTVcetaB7dPhN1TlJAA0uqppuDE5dlQOcGUytghQoo
+CvaOw8BVcQ46yaBEmyvXQtLLcrclg8JaopgoWWpo1CTl2ZqGpomL/YpLMVylczwv
+VOmuC6d9NygZEs1APvfthmSVN3MEfJ39GTmEoJE54fRcbrhqaFWSeIzxmG0/qJvS
+B6b6ShHriEYRqMvoSItAswRGGONEyx+ZOBVLiapbWaOhYtBHTfXk7V02Sszu1O7+
+O+Y+j9ogz+TVvKpPMaviIraTj/aphiq+E5x6VscHjT+1T7InD277csh+QuggEJw=
+=gTh0
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.testing.resourceresolver-mock-1.1.20.pom.md5
==============================================================================
--- release/sling/org.apache.sling.testing.resourceresolver-mock-1.1.20.pom.md5 (added)
+++ release/sling/org.apache.sling.testing.resourceresolver-mock-1.1.20.pom.md5 Tue Oct 17 12:52:28 2017
@@ -0,0 +1 @@
+eea261a56ed11208c6b02b917fc6044b
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.resourceresolver-mock-1.1.20.pom.sha1
==============================================================================
--- release/sling/org.apache.sling.testing.resourceresolver-mock-1.1.20.pom.sha1 (added)
+++ release/sling/org.apache.sling.testing.resourceresolver-mock-1.1.20.pom.sha1 Tue Oct 17 12:52:28 2017
@@ -0,0 +1 @@
+24e1cb0c5e6a44225c04f8450c69352eb1fe11d4
\ No newline at end of file

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

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

Added: release/sling/org.apache.sling.testing.sling-mock-1.9.10-javadoc.jar.asc
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-1.9.10-javadoc.jar.asc (added)
+++ release/sling/org.apache.sling.testing.sling-mock-1.9.10-javadoc.jar.asc Tue Oct 17 12:52:28 2017
@@ -0,0 +1,10 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQEcBAABAgAGBQJZ3817AAoJEM4rf/Z1146SGRcH/1mM8N3ZGtQ8JNGcvkN7Wai4
+7ve1wbK5MkN1gqnG9CQNo5NUKmbps5/9GAbbSFm6SlLu3Q0GFnFKl1SKJDhQzLbe
+CqSeMHaNddP/DF4viKZxsdmIVKz+a9GGrT/+JBL0fNfB/zTh4zjuupGOfOMXRrnk
+7Pk8gv1sDiTTWToElBaXq39cJdC0gXcqZkdFSuxKTuQY8FT0yD/18PiiPt7FjoLH
+200082OJnhTRZ0jXfQx4mfAvxdldWlkGypt7jpJmld122tyUBg8qP8pkETiVg8g1
+V6nj9LSMsn03x2jvR0D8SPpZxHCb1uucmHqGCgxM5StcIrp+BVfG10NQFlau4uI=
+=Q/pV
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.testing.sling-mock-1.9.10-javadoc.jar.md5
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-1.9.10-javadoc.jar.md5 (added)
+++ release/sling/org.apache.sling.testing.sling-mock-1.9.10-javadoc.jar.md5 Tue Oct 17 12:52:28 2017
@@ -0,0 +1 @@
+dfcf65e47de55fcb0a738f6476ac634c
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.sling-mock-1.9.10-javadoc.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-1.9.10-javadoc.jar.sha1 (added)
+++ release/sling/org.apache.sling.testing.sling-mock-1.9.10-javadoc.jar.sha1 Tue Oct 17 12:52:28 2017
@@ -0,0 +1 @@
+c819da89faf823ba1aa1ca501332b00a56fcc2bd
\ No newline at end of file

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

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

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

Added: release/sling/org.apache.sling.testing.sling-mock-1.9.10-source-release.zip.asc
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-1.9.10-source-release.zip.asc (added)
+++ release/sling/org.apache.sling.testing.sling-mock-1.9.10-source-release.zip.asc Tue Oct 17 12:52:28 2017
@@ -0,0 +1,10 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQEcBAABAgAGBQJZ3817AAoJEM4rf/Z1146SF2EH/ikztOrebQXp1QFXaNjR/Lvs
+Luwsj2MNZKiIADlXst2v8bA5ymnQUa7U1/GlDMl7AKwvFlVY5UZuNFC8FhWvt8wX
+opZ1ABjq/7tUgCJx5O1zOmjwtpnBq3SIAEIq8SW1bhNTYNwyGHN/m1ZLdNZ3PSwO
+wDCle8dBNpW9y3+eEgFwzJWF8muVDYob/orT7VRNb7ZhG89N8goMmZJkvoeOupx5
+FqTr64OPWUAIWzAP08nBnUr6f3VuvifhbPF/yBBzVfof2J0UkdTm3Jg2HB3Xzf9h
+vBAs3iV2hIsJIU0t48+pvgrsCmi7bYMjslrK6GHLtFqTlPZlpGkG0C7YT6cR3zM=
+=M33v
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.testing.sling-mock-1.9.10-source-release.zip.md5
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-1.9.10-source-release.zip.md5 (added)
+++ release/sling/org.apache.sling.testing.sling-mock-1.9.10-source-release.zip.md5 Tue Oct 17 12:52:28 2017
@@ -0,0 +1 @@
+d1d02104e38e4ad88f638318021b40af
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.sling-mock-1.9.10-source-release.zip.sha1
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-1.9.10-source-release.zip.sha1 (added)
+++ release/sling/org.apache.sling.testing.sling-mock-1.9.10-source-release.zip.sha1 Tue Oct 17 12:52:28 2017
@@ -0,0 +1 @@
+604d875e0cbd791aa4ed3437d17e32dd8de719fd
\ No newline at end of file

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

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

Added: release/sling/org.apache.sling.testing.sling-mock-1.9.10-sources.jar.asc
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-1.9.10-sources.jar.asc (added)
+++ release/sling/org.apache.sling.testing.sling-mock-1.9.10-sources.jar.asc Tue Oct 17 12:52:28 2017
@@ -0,0 +1,10 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQEcBAABAgAGBQJZ3817AAoJEM4rf/Z1146SgBsIAOf6xeu6MV4dNxmgpD8PcAJm
+ncXPbtGy5c/7WqeR4oDwfi1/38JtPTcYGUcKN9Q3zbhn+Xya9LH88R7t4tvuGjzq
+PVPvQ4/LBHVL8nxMrtlCSWycjB0w7sJ1RXp+EUkurwY+DGE7O24M97UmpLFpBFcy
+NjVWqF5aShH6VHVrBHVWo0GjhfN7SKVZRqIykBIjSg67iaNEKlXnF96O1JI8Qb/R
+wd8SswnHy7yJtEGE9f/9k7KN0BogVjuwWLIhuk0znMC2no0V6FoU8TYxfF4w6DDh
+WBi7W/Ro0J67jK4WIxnn63YAQSkyTHairo+jGzTX6I3e2I84DcltJ3lNvGqGNZk=
+=p0z1
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.testing.sling-mock-1.9.10-sources.jar.md5
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-1.9.10-sources.jar.md5 (added)
+++ release/sling/org.apache.sling.testing.sling-mock-1.9.10-sources.jar.md5 Tue Oct 17 12:52:28 2017
@@ -0,0 +1 @@
+6e3b87f90d22b00ec068e8428b484013
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.sling-mock-1.9.10-sources.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-1.9.10-sources.jar.sha1 (added)
+++ release/sling/org.apache.sling.testing.sling-mock-1.9.10-sources.jar.sha1 Tue Oct 17 12:52:28 2017
@@ -0,0 +1 @@
+433b464de1d6b95da098d180a28fb204fbd75f5d
\ No newline at end of file

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

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

Added: release/sling/org.apache.sling.testing.sling-mock-1.9.10-tests.jar.asc
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-1.9.10-tests.jar.asc (added)
+++ release/sling/org.apache.sling.testing.sling-mock-1.9.10-tests.jar.asc Tue Oct 17 12:52:28 2017
@@ -0,0 +1,10 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQEcBAABAgAGBQJZ3817AAoJEM4rf/Z1146Sr4kH/2uBjS5MxOU18tvFXit31eYF
+8FStrFlDCAY2t2PZC0RFXb46fFd0mdyDA2sYqLGgUwgPw+dl0J58+i1LGhbMYzk5
+Li4RCzD/gD/aOKM8UtWFtDydCO6NTGrHetVzymS9T0KR4YAziqhLU2BouOkPboGq
+owNcDiat6LsRk7+qM1yPCFleZcCz6iyAzVSqjizs2z4vV/fdwvJW6cYfWCMXB6kB
+QcftsFyHaRIzEJYj6eICcCJOy0kaUU16aaH2zrDvVAqWYCSfCTtGzonDVKjcDORS
+BhtaiTZIEW33DVxtNCrGhL/HwBkvHuSDZkyv/oToquSRt++JyD5aYXHx05YK8tU=
+=qg2p
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.testing.sling-mock-1.9.10-tests.jar.md5
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-1.9.10-tests.jar.md5 (added)
+++ release/sling/org.apache.sling.testing.sling-mock-1.9.10-tests.jar.md5 Tue Oct 17 12:52:28 2017
@@ -0,0 +1 @@
+d7167be34eb78442a2fbce13aaef5758
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.sling-mock-1.9.10-tests.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-1.9.10-tests.jar.sha1 (added)
+++ release/sling/org.apache.sling.testing.sling-mock-1.9.10-tests.jar.sha1 Tue Oct 17 12:52:28 2017
@@ -0,0 +1 @@
+becdbb1017a323839c9c1c0b78773c06547e52c9
\ No newline at end of file

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

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

Added: release/sling/org.apache.sling.testing.sling-mock-1.9.10.jar.asc
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-1.9.10.jar.asc (added)
+++ release/sling/org.apache.sling.testing.sling-mock-1.9.10.jar.asc Tue Oct 17 12:52:28 2017
@@ -0,0 +1,10 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQEcBAABAgAGBQJZ3817AAoJEM4rf/Z1146SRZEH/2hSO7MkS9HTfOujaQsMzk9D
+2dn/l118D8r7wrv3S+RePgfxluKhckwyxi9vNF3wnm+0ZQ5S/q1FTmOJiv9Z8m8q
+k3FR6mCWCZTDrTI7xzGSpPxYhd9RRiA3D65BV65uYkvXo18sq86D9op3KNep22/U
+Oz5Q4waUBBQeCoqAgiKrV4SMVA9/MdJfkxFFp5cX848s92EaiS/DWlT9SRQiGJIR
+JslutLliRUSZmYV2tRcdh1m0+Te595wqJvJ3jfvg5rrfjPA4ULcXOqtgilkaJxUb
+YOPetSXLrMp1GX7rIARcqJJ/fcDdGlWyC87hGDMZOcFVXuRy1WINF9lfVeIP8sI=
+=gdGY
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.testing.sling-mock-1.9.10.jar.md5
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-1.9.10.jar.md5 (added)
+++ release/sling/org.apache.sling.testing.sling-mock-1.9.10.jar.md5 Tue Oct 17 12:52:28 2017
@@ -0,0 +1 @@
+71d64cb521707354a11331946f0873f4
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.sling-mock-1.9.10.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-1.9.10.jar.sha1 (added)
+++ release/sling/org.apache.sling.testing.sling-mock-1.9.10.jar.sha1 Tue Oct 17 12:52:28 2017
@@ -0,0 +1 @@
+b53888ce2ccf650f8e72525004d5b0171d1190aa
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.sling-mock-1.9.10.pom
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-1.9.10.pom (added)
+++ release/sling/org.apache.sling.testing.sling-mock-1.9.10.pom Tue Oct 17 12:52:28 2017
@@ -0,0 +1,285 @@
+<?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</artifactId>
+        <version>26</version>
+        <relativePath />
+    </parent>
+
+    <artifactId>org.apache.sling.testing.sling-mock</artifactId>
+    <version>1.9.10</version>
+    <packaging>bundle</packaging>
+
+    <name>Apache Sling Testing Sling Mock</name>
+    <description>Mock implementation of selected Sling APIs.</description>
+
+    <scm>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/sling/tags/org.apache.sling.testing.sling-mock-1.9.10</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/sling/tags/org.apache.sling.testing.sling-mock-1.9.10</developerConnection>
+        <url>http://svn.apache.org/viewvc/sling/tags/org.apache.sling.testing.sling-mock-1.9.10</url>
+    </scm>
+
+    <dependencies>
+  
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.testing.osgi-mock</artifactId>
+            <version>1.9.8</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.testing.jcr-mock</artifactId>
+            <version>1.3.2</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.testing.resourceresolver-mock</artifactId>
+            <version>1.1.20</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.servlet-helpers</artifactId>
+            <version>1.0.2</version>
+            <scope>compile</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.models.api</artifactId>
+            <version>1.1.0</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.models.impl</artifactId>
+            <version>1.1.0</version>
+            <scope>compile</scope>
+        </dependency>
+    
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.api</artifactId>
+            <version>2.4.0</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.resourceresolver</artifactId>
+            <version>1.1.0</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.jcr.api</artifactId>
+            <version>2.2.0</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.jcr.resource</artifactId>
+            <version>2.3.6</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.scripting.api</artifactId>
+            <version>2.1.6</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.scripting.core</artifactId>
+            <version>2.0.26</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.commons.mime</artifactId>
+            <version>2.1.4</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.jcr.contentparser</artifactId>
+            <version>1.2.4</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.johnzon</groupId>
+            <artifactId>johnzon-core</artifactId>
+            <version>1.0.0</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.commons.osgi</artifactId>
+            <version>2.2.0</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.commons.classloader</artifactId>
+            <version>1.3.0</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.settings</artifactId>
+            <version>1.2.2</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.i18n</artifactId>
+            <version>2.2.4</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.resourcebuilder</artifactId>
+            <version>1.0.2</version>
+            <scope>compile</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>commons-collections</groupId>
+            <artifactId>commons-collections</artifactId>
+            <version>3.2.1</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>commons-io</groupId>
+            <artifactId>commons-io</artifactId>
+            <version>2.4</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>commons-lang</groupId>
+            <artifactId>commons-lang</artifactId>
+            <version>2.5</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>commons-beanutils</groupId>
+            <artifactId>commons-beanutils</artifactId>
+            <version>1.8.3</version>
+            <scope>compile</scope>
+        </dependency>
+    
+        <dependency>
+            <groupId>javax.servlet</groupId>
+            <artifactId>javax.servlet-api</artifactId>
+            <version>3.0.1</version>
+            <scope>compile</scope>
+        </dependency>
+    
+        <dependency>
+            <groupId>javax.inject</groupId>
+            <artifactId>javax.inject</artifactId>
+            <version>1</version>
+            <scope>compile</scope>
+        </dependency>
+    
+        <dependency>
+            <groupId>javax.jcr</groupId>
+            <artifactId>jcr</artifactId>
+            <version>2.0</version>
+            <scope>compile</scope>
+        </dependency>
+    
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.mockito</groupId>
+            <artifactId>mockito-all</artifactId>
+            <version>1.9.5</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.testing.logging-mock</artifactId>
+            <version>1.0.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>org.apache.felix</groupId>
+            <artifactId>maven-bundle-plugin</artifactId>
+            <extensions>true</extensions>
+          </plugin>
+    
+          <plugin>
+            <groupId>org.apache.felix</groupId>
+            <artifactId>maven-scr-plugin</artifactId>
+          </plugin>
+    
+        </plugins>
+    </build>
+  
+    <!-- Profiles to run unit tests against different JCR Resource versions -->
+    <profiles>
+        <profile>
+            <id>jcr.resource-2.5.4</id>
+            <dependencies>
+                <dependency>
+                    <groupId>org.apache.sling</groupId>
+                    <artifactId>org.apache.sling.api</artifactId>
+                    <version>2.9.0</version>
+                    <scope>compile</scope>
+                </dependency>
+                <dependency>
+                    <groupId>org.apache.sling</groupId>
+                    <artifactId>org.apache.sling.jcr.resource</artifactId>
+                    <version>2.5.4</version>
+                    <scope>compile</scope>
+                </dependency>
+            </dependencies>
+        </profile>
+    </profiles>
+    
+</project>

Added: release/sling/org.apache.sling.testing.sling-mock-1.9.10.pom.asc
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-1.9.10.pom.asc (added)
+++ release/sling/org.apache.sling.testing.sling-mock-1.9.10.pom.asc Tue Oct 17 12:52:28 2017
@@ -0,0 +1,10 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQEcBAABAgAGBQJZ3817AAoJEM4rf/Z1146SR1gH/2aIs54jx3cSHO0FesWF/P32
+AqN5CotMthSi2hS3Sk+soqgcmfQYbWdC9Sc2f2+xkaA13QAI99Y/esdaadjtfhiz
+a4DDJJAIeNm+KeB7HfhlaGOtxWk0ZP+SmcW4tDl9FsXwNkbGnaSBgCAHXS3fNNdu
+hincIylEPEkn5JjDJls0ImVTVuj4Z6UrW/nUe4h1u2qcGocrdF97sDeUeUAeP7GD
+dn/UyMZ30FD3GWU3NECKHpUk4Ftq7w4Fvb5kRvLOGq/JNEdCkJ+mbXoKd4eG7myn
+LH7R2nOgETfiZv+WBItriZp0RrSnpzZFJepYsakavJn/8f8cmj7GqDC1Apl8Gis=
+=CaMr
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.testing.sling-mock-1.9.10.pom.md5
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-1.9.10.pom.md5 (added)
+++ release/sling/org.apache.sling.testing.sling-mock-1.9.10.pom.md5 Tue Oct 17 12:52:28 2017
@@ -0,0 +1 @@
+ee18c8aaf127ab0121d855a7be4f2af2
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.sling-mock-1.9.10.pom.sha1
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-1.9.10.pom.sha1 (added)
+++ release/sling/org.apache.sling.testing.sling-mock-1.9.10.pom.sha1 Tue Oct 17 12:52:28 2017
@@ -0,0 +1 @@
+9bde92e566b7a4667c2ce69719be9c19522b6705
\ No newline at end of file

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

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

Added: release/sling/org.apache.sling.testing.sling-mock-2.2.14-javadoc.jar.asc
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-2.2.14-javadoc.jar.asc (added)
+++ release/sling/org.apache.sling.testing.sling-mock-2.2.14-javadoc.jar.asc Tue Oct 17 12:52:28 2017
@@ -0,0 +1,10 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQEcBAABAgAGBQJZ387YAAoJEM4rf/Z1146S/mAH/jjG9RwpgLz8wgiVyLkW5ciU
+L7sRK6ckHAAlzT3uk57nds5SrPtkkeb1JrOEbazm2YbQwZgXi6cCYlvQ8CVStUGK
+hdlud52/vtT2mZLE8pPiCtFYtzNYRpbBVbyzfnISe2gwNb+cI7+Vm5Tl5klZbY5F
+WAztHyPTH0o43JAej3wcTJioPNH5ufpZotCkV7mAcvfshzyt1zLXpbmYd1Gy+9AK
+oyNySaIO+xUjxAL/YAeBEECWHMyPBPqAg/E5LltyRTaEAuKy5vFM7XTgKa99m1bG
+1laoRwt4PgYAVRyZoq4yAc1sLQd9T/dL/PntBz5qAgQY+IIx32cL6KUcioM38dQ=
+=YVvf
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.testing.sling-mock-2.2.14-javadoc.jar.md5
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-2.2.14-javadoc.jar.md5 (added)
+++ release/sling/org.apache.sling.testing.sling-mock-2.2.14-javadoc.jar.md5 Tue Oct 17 12:52:28 2017
@@ -0,0 +1 @@
+770ed16bacdc599dcefe576dac1f9e99
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.sling-mock-2.2.14-javadoc.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-2.2.14-javadoc.jar.sha1 (added)
+++ release/sling/org.apache.sling.testing.sling-mock-2.2.14-javadoc.jar.sha1 Tue Oct 17 12:52:28 2017
@@ -0,0 +1 @@
+5a36d5533219484a45aa4ea814c2355bfc8e7d11
\ No newline at end of file

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

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

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

Added: release/sling/org.apache.sling.testing.sling-mock-2.2.14-source-release.zip.asc
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-2.2.14-source-release.zip.asc (added)
+++ release/sling/org.apache.sling.testing.sling-mock-2.2.14-source-release.zip.asc Tue Oct 17 12:52:28 2017
@@ -0,0 +1,10 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQEcBAABAgAGBQJZ387XAAoJEM4rf/Z1146SeBgIAN1ghuQbUxzJ69GHWFCdhpbo
+jgv7E15giAxpNhUrOGShikhZF9NmK5UIlxnX3gMkyHxg2MyvNZvqXpeKjpL+Oahx
+ALwTbkB/TLsUY5pj9ymUMDdTexPRf7mbLLbSInuu9gSc+6ppyDgl2iqUIyVHNSMW
+rFDWBngt+KN1wyTKKehw1WUHJYkfsvAau2MhJqc/oE5EKK0Bep3xs1iD7FGWZC5k
+ghyB+pAAvVc1oKZqd0OU8S5/IWCMo0o1dgCOq4kMs26/nR6eY8aS3tXxV7MO1j5v
+GTaDvXITDNDvTwbD9SCtNquL0SiJcbslxtXTdoDKmPOFK/IVHcZTK5jOdELyMgM=
+=ASFA
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.testing.sling-mock-2.2.14-source-release.zip.md5
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-2.2.14-source-release.zip.md5 (added)
+++ release/sling/org.apache.sling.testing.sling-mock-2.2.14-source-release.zip.md5 Tue Oct 17 12:52:28 2017
@@ -0,0 +1 @@
+7fd535cd222d3bec2f780d4cd46cab56
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.sling-mock-2.2.14-source-release.zip.sha1
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-2.2.14-source-release.zip.sha1 (added)
+++ release/sling/org.apache.sling.testing.sling-mock-2.2.14-source-release.zip.sha1 Tue Oct 17 12:52:28 2017
@@ -0,0 +1 @@
+cb1add9a92118820bb2c9b0d4bc507a0f9983232
\ No newline at end of file

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

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

Added: release/sling/org.apache.sling.testing.sling-mock-2.2.14-sources.jar.asc
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-2.2.14-sources.jar.asc (added)
+++ release/sling/org.apache.sling.testing.sling-mock-2.2.14-sources.jar.asc Tue Oct 17 12:52:28 2017
@@ -0,0 +1,10 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQEcBAABAgAGBQJZ387XAAoJEM4rf/Z1146Shr8H/2kp540k8cfBsaCMD56JcZrp
+kNwh6uZ5iWQdwGcho6cv0sINNZzK+JVEwFFqSRkGIMux7baZkogp65gjsLRKoyzW
+tx3Em0IhQyDLHj5SJzFuZfMIcOQz7bSNnWrWrcXJ7HQe7YT6TreicvKuPWIIkvZU
+JC2z7ROkJPC4wjdgCLpA/ZrkJhUmd9rDeuO/tfrQJRR/Ynk9C7ATA741HL+BHzrb
+kz0hqdZ2b7L3K0t0LmjsmT1FkHCpSMlwoJSIpZ0kry+V8f8SwrH+esq7/NcNlf20
+8RFSyz1tDHVNVPcBpBDyjA8Ht+AC/XLr3EbDG9NIAYYQZSPAPFblti4+GY5/vsc=
+=r23H
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.testing.sling-mock-2.2.14-sources.jar.md5
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-2.2.14-sources.jar.md5 (added)
+++ release/sling/org.apache.sling.testing.sling-mock-2.2.14-sources.jar.md5 Tue Oct 17 12:52:28 2017
@@ -0,0 +1 @@
+c69f5921d1b3c81741c57a402aad2030
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.sling-mock-2.2.14-sources.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-2.2.14-sources.jar.sha1 (added)
+++ release/sling/org.apache.sling.testing.sling-mock-2.2.14-sources.jar.sha1 Tue Oct 17 12:52:28 2017
@@ -0,0 +1 @@
+12a04bc10632b44bb738945e4c75555797a264f8
\ No newline at end of file

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

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

Added: release/sling/org.apache.sling.testing.sling-mock-2.2.14-tests.jar.asc
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-2.2.14-tests.jar.asc (added)
+++ release/sling/org.apache.sling.testing.sling-mock-2.2.14-tests.jar.asc Tue Oct 17 12:52:28 2017
@@ -0,0 +1,10 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQEcBAABAgAGBQJZ387YAAoJEM4rf/Z1146SmLsH/RTUt8drHycfo9YrLNQRTKnY
+ixuXO/iKL+A3tzOHPC9XcyYR2cBW4+Zp8z+nHWqcwT4w97i+j+XlONHkG4/94x74
+5E0qp8iQNgFBS5znLzMZrNjBHFtvWNLqE3Nixnril5Qeu+CEb2eVhQSfVdb5xGtz
+IO9nb63tWz8/i91E//OQPZzxGtEFMkQsDCZ41gViJNa0NSVI3yxjYkRtOV4hu/Py
+yMaacBbXo+rM5piNyEPeVtgU74iQ32kQH1VMlI7Cs+QgVLlh8w3HqY3m8hbh7CDG
+cfoJkYL1BkCraxGGRmmdqVhaxIHie26TOyGwf/j8VEVteaCadrpqUbTXJOSfLgM=
+=TBGS
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.testing.sling-mock-2.2.14-tests.jar.md5
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-2.2.14-tests.jar.md5 (added)
+++ release/sling/org.apache.sling.testing.sling-mock-2.2.14-tests.jar.md5 Tue Oct 17 12:52:28 2017
@@ -0,0 +1 @@
+41d6c1eb3f5a7d47a5ddafe7b421fea8
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.sling-mock-2.2.14-tests.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-2.2.14-tests.jar.sha1 (added)
+++ release/sling/org.apache.sling.testing.sling-mock-2.2.14-tests.jar.sha1 Tue Oct 17 12:52:28 2017
@@ -0,0 +1 @@
+135f1ab25400f2b163ece3359b01b91759b4bd9c
\ No newline at end of file

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

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

Added: release/sling/org.apache.sling.testing.sling-mock-2.2.14.jar.asc
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-2.2.14.jar.asc (added)
+++ release/sling/org.apache.sling.testing.sling-mock-2.2.14.jar.asc Tue Oct 17 12:52:28 2017
@@ -0,0 +1,10 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQEcBAABAgAGBQJZ387XAAoJEM4rf/Z1146S5xUIALzHoI+SPX8lBw0+3O6xAffZ
+2vzQ0h64D9Tk4x1IH4XcUWdEFJvemM8hVk+QbddBeZfhbfyaLmjVIth6Zd7VO9se
+pfs06rKyoFneeg0GAGtbwLm4Eue5k34qKCVSB1yQozyKqgceT1cQG5O1D/fTWAJ8
+hdEKXPNM8EPA7QYikd0mR58KirkG2U03jhtrpArqLMmtNUF2v8jbLbOb8TiYZ9s8
+OwSMLjMb3L/oovxidr7UB2Fvgq1b63idwpf93QbbYT+8KSjNyu6hCR3rRnIzLQ6x
+3Q7x2trYXMX7KxZUyrku6IZfnhZLOnUaQq509RIxjprLju5S0Fko3CZJoKNwhZM=
+=Ch1G
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.testing.sling-mock-2.2.14.jar.md5
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-2.2.14.jar.md5 (added)
+++ release/sling/org.apache.sling.testing.sling-mock-2.2.14.jar.md5 Tue Oct 17 12:52:28 2017
@@ -0,0 +1 @@
+23c9be302da056d988f45f69fe05d38d
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.sling-mock-2.2.14.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-2.2.14.jar.sha1 (added)
+++ release/sling/org.apache.sling.testing.sling-mock-2.2.14.jar.sha1 Tue Oct 17 12:52:28 2017
@@ -0,0 +1 @@
+7e4916465052e61eb8cba5dce4250f24fd545a74
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.sling-mock-2.2.14.pom
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-2.2.14.pom (added)
+++ release/sling/org.apache.sling.testing.sling-mock-2.2.14.pom Tue Oct 17 12:52:28 2017
@@ -0,0 +1,308 @@
+<?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</artifactId>
+        <version>30</version>
+        <relativePath />
+    </parent>
+
+    <artifactId>org.apache.sling.testing.sling-mock</artifactId>
+    <version>2.2.14</version>
+    <packaging>bundle</packaging>
+
+    <name>Apache Sling Testing Sling Mock</name>
+    <description>Mock implementation of selected Sling APIs.</description>
+
+    <scm>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/sling/tags/org.apache.sling.testing.sling-mock-2.2.14</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/sling/tags/org.apache.sling.testing.sling-mock-2.2.14</developerConnection>
+        <url>http://svn.apache.org/viewvc/sling/tags/org.apache.sling.testing.sling-mock-2.2.14</url>
+    </scm>
+
+    <dependencies>
+  
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.testing.osgi-mock</artifactId>
+            <version>2.3.4</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.testing.jcr-mock</artifactId>
+            <version>1.3.2</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.testing.resourceresolver-mock</artifactId>
+            <version>1.1.20</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.servlet-helpers</artifactId>
+            <version>1.1.2</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.sling</groupId>
+            <artifactId>org.apache.sling.models.api</artifactId>
+            <version>1.2.2</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.models.impl</artifactId>
+            <version>1.2.2</version>
+            <scope>compile</scope>
+        </dependency>
+    
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.api</artifactId>
+            <version>2.11.0</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.resourceresolver</artifactId>
+            <version>1.4.8</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.jcr.api</artifactId>
+            <version>2.3.0</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.jcr.resource</artifactId>
+            <version>2.7.4</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.scripting.api</artifactId>
+            <version>2.1.8</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.scripting.core</artifactId>
+            <version>2.0.36</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.commons.mime</artifactId>
+            <version>2.1.8</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.jcr.contentparser</artifactId>
+            <version>1.2.4</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.johnzon</groupId>
+            <artifactId>johnzon-core</artifactId>
+            <version>1.0.0</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.commons.classloader</artifactId>
+            <version>1.3.2</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.settings</artifactId>
+            <version>1.3.8</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.i18n</artifactId>
+            <version>2.4.4</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.adapter</artifactId>
+            <version>2.1.6</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.resourcebuilder</artifactId>
+            <version>1.0.2</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.jackrabbit</groupId>
+            <artifactId>jackrabbit-api</artifactId>
+            <version>2.11.3</version>
+            <scope>compile</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>commons-collections</groupId>
+            <artifactId>commons-collections</artifactId>
+            <version>3.2.2</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>commons-io</groupId>
+            <artifactId>commons-io</artifactId>
+            <version>2.4</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>commons-lang</groupId>
+            <artifactId>commons-lang</artifactId>
+            <version>2.5</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>commons-beanutils</groupId>
+            <artifactId>commons-beanutils</artifactId>
+            <version>1.8.3</version>
+            <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>javax.jcr</groupId>
+            <artifactId>jcr</artifactId>
+            <scope>compile</scope>
+        </dependency>
+    
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.mockito</groupId>
+            <artifactId>mockito-all</artifactId>
+            <version>1.9.5</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>
+        </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>org.apache.felix</groupId>
+              <artifactId>maven-bundle-plugin</artifactId>
+              <extensions>true</extensions>
+          </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.16.2</version>
+                    <scope>compile</scope>
+                </dependency>
+                <dependency>
+                    <groupId>org.apache.sling</groupId>
+                    <artifactId>org.apache.sling.resourceresolver</artifactId>
+                    <version>1.5.22</version>
+                    <scope>compile</scope>
+                </dependency>
+                <dependency>
+                    <groupId>org.apache.sling</groupId>
+                    <artifactId>org.apache.sling.jcr.resource</artifactId>
+                    <version>3.0.0</version>
+                    <scope>compile</scope>
+                </dependency>
+                <dependency>
+                    <groupId>org.apache.jackrabbit</groupId>
+                    <artifactId>jackrabbit-api</artifactId>
+                    <version>2.13.4</version>
+                    <scope>provided</scope>
+                </dependency>
+                <dependency>
+                    <groupId>org.apache.jackrabbit</groupId>
+                    <artifactId>oak-jcr</artifactId>
+                    <version>1.5.15</version>
+                    <scope>provided</scope>
+                </dependency>
+            </dependencies>
+        </profile>
+    </profiles>
+  
+</project>

Added: release/sling/org.apache.sling.testing.sling-mock-2.2.14.pom.asc
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-2.2.14.pom.asc (added)
+++ release/sling/org.apache.sling.testing.sling-mock-2.2.14.pom.asc Tue Oct 17 12:52:28 2017
@@ -0,0 +1,10 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQEcBAABAgAGBQJZ387XAAoJEM4rf/Z1146SccQH/j6Q0Pdn84BuTZfoeQNELEAQ
+G+SvJFzK0jQ/mxYyfHStzpFlUKw96gsm1eguhGdCftjvUW/f8eY3YTIdiXRm/Uh3
+DbWApbtezOhWBzsfrfs+umH24GBKnXp32+nzmZ7Kox3XCltoGJtb2koyNB9e5W7W
+rtq0vFX0h/ZHUdpE6XRHgoebV8E3gYOf0+RTesZzcb1bjKlzEpOTknEEKFAjE2PV
+rWF5Y4HbyNL3jluoYxgYxBNgbw+BPUP74uIbjr6PJJx+Jl5tw96wR1xrcBTOa++N
+07z319WDseWNqh1/vynYV6oMlBTqY9a1zz9Rlosd2MHWr7z2boamapoZ/R4aehk=
+=Dmt1
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.testing.sling-mock-2.2.14.pom.md5
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-2.2.14.pom.md5 (added)
+++ release/sling/org.apache.sling.testing.sling-mock-2.2.14.pom.md5 Tue Oct 17 12:52:28 2017
@@ -0,0 +1 @@
+6ca130b0d2f179b2c08872dae6e761aa
\ No newline at end of file

Added: release/sling/org.apache.sling.testing.sling-mock-2.2.14.pom.sha1
==============================================================================
--- release/sling/org.apache.sling.testing.sling-mock-2.2.14.pom.sha1 (added)
+++ release/sling/org.apache.sling.testing.sling-mock-2.2.14.pom.sha1 Tue Oct 17 12:52:28 2017
@@ -0,0 +1 @@
+88fb82c4e80475306fe28171e96e4cb32a84e7a6
\ No newline at end of file