You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by dk...@apache.org on 2019/11/23 02:35:16 UTC

svn commit: r36883 [3/3] - /release/sling/

Added: release/sling/org.apache.sling.cms.core-0.14.0.pom
==============================================================================
--- release/sling/org.apache.sling.cms.core-0.14.0.pom (added)
+++ release/sling/org.apache.sling.cms.core-0.14.0.pom Sat Nov 23 02:35:15 2019
@@ -0,0 +1,271 @@
+<?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>
+        <artifactId>org.apache.sling.cms</artifactId>
+        <groupId>org.apache.sling</groupId>
+        <version>0.14.0</version>
+    </parent>
+    <artifactId>org.apache.sling.cms.core</artifactId>
+    <packaging>bundle</packaging>
+    <name>Apache Sling - CMS Core</name>
+    <description>The core for the Apache Sling Reference CMS Application</description>
+
+    <properties>
+        <sling.java.version>8</sling.java.version>
+    </properties>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-bundle-plugin</artifactId>
+                <extensions>true</extensions>
+                <configuration>
+                    <instructions>
+                        <Sling-Model-Packages>
+                            org.apache.sling.cms.core.models,
+                            org.apache.sling.cms.core.internal.models
+                        </Sling-Model-Packages>
+                        <Embed-Dependency>*;scope=compile|runtime</Embed-Dependency>
+                    </instructions>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <configuration>
+                    <source>8</source>
+                    <target>8</target>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.sling</groupId>
+                <artifactId>maven-sling-plugin</artifactId>
+                <configuration>
+                    <slingUrl>${sling.protocol}://${sling.host}:${sling.port}/system/console</slingUrl>
+                    <user>${sling.username}</user>
+                    <password>${sling.password}</password>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-surefire-plugin</artifactId>
+                <configuration>
+                    <useSystemClassLoader>false</useSystemClassLoader>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
+    <profiles>
+        <profile>
+            <id>autoInstallBundle</id>
+            <build>
+                <plugins>
+                    <plugin>
+                        <groupId>org.apache.sling</groupId>
+                        <artifactId>maven-sling-plugin</artifactId>
+                        <executions>
+                            <execution>
+                                <id>install-bundle</id>
+                                <goals>
+                                    <goal>install</goal>
+                                </goals>
+                            </execution>
+                        </executions>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
+    </profiles>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.geronimo.specs</groupId>
+            <artifactId>geronimo-atinject_1.0_spec</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>javax.servlet</groupId>
+            <artifactId>servlet-api</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.service.component.annotations</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.service.metatype.annotations</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>osgi.core</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>osgi.cmpn</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>osgi.annotation</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>javax.jcr</groupId>
+            <artifactId>jcr</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.api</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.servlets.post</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-api</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-simple</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.models.api</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.jackrabbit</groupId>
+            <artifactId>jackrabbit-jcr-commons</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.jcr.resource</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.commons</groupId>
+            <artifactId>commons-lang3</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>commons-io</groupId>
+            <artifactId>commons-io</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.rewriter</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.cocoon</groupId>
+            <artifactId>cocoon-serializers-charsets</artifactId>
+        </dependency>
+        <dependency>
+            <artifactId>jstl</artifactId>
+            <groupId>org.apache.geronimo.bundles</groupId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.caconfig.api</artifactId>
+        </dependency>
+        <dependency>
+            <artifactId>jackrabbit-api</artifactId>
+            <groupId>org.apache.jackrabbit</groupId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.commons.johnzon</artifactId>
+        </dependency>
+        <dependency>
+            <artifactId>org.apache.sling.engine</artifactId>
+            <groupId>org.apache.sling</groupId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.cms.api</artifactId>
+            <version>${project.version}</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.jackrabbit</groupId>
+            <artifactId>oak-core</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.jsoup</groupId>
+            <artifactId>jsoup</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.i18n</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.felix</groupId>
+            <artifactId>org.apache.felix.webconsole</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.commons</groupId>
+            <artifactId>commons-math</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.httpcomponents</groupId>
+            <artifactId>httpclient</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.tika</groupId>
+            <artifactId>tika-core</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.event.api</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.scripting.api</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.fileoptim</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>net.coobird</groupId>
+            <artifactId>thumbnailator</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.mockito</groupId>
+            <artifactId>mockito-core</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <artifactId>pdfbox</artifactId>
+            <groupId>org.apache.pdfbox</groupId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.poi</groupId>
+            <artifactId>poi-ooxml</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.poi</groupId>
+            <artifactId>poi-scratchpad</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.testing.sling-mock.junit4</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.commons.classloader</artifactId>
+        </dependency>
+        <dependency>
+            <artifactId>oak-jcr</artifactId>
+            <groupId>org.apache.jackrabbit</groupId>
+        </dependency>
+    </dependencies>
+</project>
\ No newline at end of file

Added: release/sling/org.apache.sling.cms.core-0.14.0.pom.asc
==============================================================================
--- release/sling/org.apache.sling.cms.core-0.14.0.pom.asc (added)
+++ release/sling/org.apache.sling.cms.core-0.14.0.pom.asc Sat Nov 23 02:35:15 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEETXg0f09Pho2Ows0T8OrBpExuQSQFAl3TbfYACgkQ8OrBpExu
+QSR4oxAApVvkFtuFxYHAFqQNgeAnxB/qdCrp1dscTqijNqoASju4EClmKpyvRdvN
+/gcoJzjslbL8GfmjigPcg5QvScEFtuIKlEAZ4c31YiP03cnMppULu+ka//7O9gTv
+Sg4WwUDVWuvnhymSPBnEUsuA/rFQih6XV6sDTfaEestkQFlWSeZXfG4pfWCjLBu/
++LchRpTKB19ILGLerq1KVVGsrAd/68XHRHuEQtO+t3plsF3lmzBshO/QgzB7qcpm
+VVm435DNpykDQ+PYq3aAPIKwCXUzB6CWwokxU+4CY4byJV+3iJ/engyb5dULbanG
+F95j+bsdS/fj8jxUgOHYVnDC41A83K8RmCoN7EGyIb05FSo2lkALbg/vcLe3HX4+
+uAo47YwZTiHtial7uWGewBO5yzcEGbG2p+aJHzRFpYMBk9QFfWk3JIpnxFbYWzQo
+fNzvd466JLbWRsxUjmKO5wTTccJabva3W0dp8kXCIAoqoNvqMlh3eTTp5PsxOtUV
+y/Jk3JJkHvUG1xPyWrb0iqEJ9qNYbnOYVeJkzdyPP0R5slJDnqsSifWvc8iKrHXm
+4OAhuEut7NLngeZj45m7kSPpJ7/wtQ2HN6n/qRQNDf6+3A03a6w2qGX+D2uCBlBr
+/XAxQ/KX3xocMbz8DCPWzuwuc8hqSL4aJkrywyeugKbnNd3zsqI=
+=TuOa
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.cms.core-0.14.0.pom.md5
==============================================================================
--- release/sling/org.apache.sling.cms.core-0.14.0.pom.md5 (added)
+++ release/sling/org.apache.sling.cms.core-0.14.0.pom.md5 Sat Nov 23 02:35:15 2019
@@ -0,0 +1 @@
+5fa19ee152798bccf71475bde53d9d12
\ No newline at end of file

Added: release/sling/org.apache.sling.cms.core-0.14.0.pom.sha1
==============================================================================
--- release/sling/org.apache.sling.cms.core-0.14.0.pom.sha1 (added)
+++ release/sling/org.apache.sling.cms.core-0.14.0.pom.sha1 Sat Nov 23 02:35:15 2019
@@ -0,0 +1 @@
+eb8682e66617578657251a93833e0ba9db123c58
\ No newline at end of file

Added: release/sling/org.apache.sling.cms.reference-0.14.0-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: release/sling/org.apache.sling.cms.reference-0.14.0-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/sling/org.apache.sling.cms.reference-0.14.0-javadoc.jar.asc
==============================================================================
--- release/sling/org.apache.sling.cms.reference-0.14.0-javadoc.jar.asc (added)
+++ release/sling/org.apache.sling.cms.reference-0.14.0-javadoc.jar.asc Sat Nov 23 02:35:15 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEETXg0f09Pho2Ows0T8OrBpExuQSQFAl3TbiIACgkQ8OrBpExu
+QSTbVQ/9Fswl/qebZob1Ifa/T530yuXW4MuBieWnxB/N1cNiWHbGH44xd0J2oMcq
+rG44XlZQDPTmFbxylRpNsZhzrwc356ZmGeL56yGFuvHf/qzI6b/yPEQJwb33SNXT
+967g1Drc5VWKSqz3gWH7rLjKmUZVVZyKLFIvBijUkrjKg1JWSnlFJJwH4FQXN8jB
+q6JyzcEoJ2P7EJALWJYp76UJN4njqX98E+ddFrmYi/P3EraxGy0x8gfrAnyLZzTH
+iB+ZI7lLysUKFN0KO7w+uZ9La9/7Y8EXxgqiCYMAqFZ5d0HT5UNHUimUl+0Bi1C3
+3jqAX2sHj5TwYByRdATRb1bVXlBcuV/WBe3c5slPca/s1+N3A8+LmBK2kbqWD/UA
+InmjG5vC9zoDP38KbaSWvAmnkX832VuE/mF296Zdyn12OIAK34/UArprMW3JWkYv
+EENLdEJcm+QC8jweYp6Fiud9Nr7oDoAmE9++AZDdB2Uovf+HcD1zQmMkSgTTe14c
+nVAXYwZRLZ2VjqNE9nkBPNAsPT98wMmiO+8xlaDvzfYyjJq5a8zsC2D8BemS/Pm4
+OdEyRiVo8u6uncvjX5wryAfOQ+FaZoEBgh/OJ7aY2qC04In8aUxwYQ8qYUEZFdGh
+KXRQnHT7FnuT3RDoYJPlG+eKnBZe6BJoGtlQ1APde+wVMt9Nd2E=
+=jpvb
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.cms.reference-0.14.0-javadoc.jar.md5
==============================================================================
--- release/sling/org.apache.sling.cms.reference-0.14.0-javadoc.jar.md5 (added)
+++ release/sling/org.apache.sling.cms.reference-0.14.0-javadoc.jar.md5 Sat Nov 23 02:35:15 2019
@@ -0,0 +1 @@
+8a37e128a674ca7b11702e584457f9e8
\ No newline at end of file

Added: release/sling/org.apache.sling.cms.reference-0.14.0-javadoc.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.cms.reference-0.14.0-javadoc.jar.sha1 (added)
+++ release/sling/org.apache.sling.cms.reference-0.14.0-javadoc.jar.sha1 Sat Nov 23 02:35:15 2019
@@ -0,0 +1 @@
+0b1cfe3f6798e9c115513e367907aed0658b0ab1
\ No newline at end of file

Added: release/sling/org.apache.sling.cms.reference-0.14.0-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: release/sling/org.apache.sling.cms.reference-0.14.0-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/sling/org.apache.sling.cms.reference-0.14.0-sources.jar.asc
==============================================================================
--- release/sling/org.apache.sling.cms.reference-0.14.0-sources.jar.asc (added)
+++ release/sling/org.apache.sling.cms.reference-0.14.0-sources.jar.asc Sat Nov 23 02:35:15 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEETXg0f09Pho2Ows0T8OrBpExuQSQFAl3TbiIACgkQ8OrBpExu
+QSRAwg//be2/N5AP3Hw7PgMPXvh6Z0NQK8506r+HpJ5wFSYrvZbSTttxaR6l/1Ua
+ZCfuCo799fnr0tEp5y7aJxiKZ0Y/8tozaN5bCcjBSAXtfp8b+67uj+XQ2DvECAtq
+UxNGAkVoneolD7TqlJrVOkWChpXuf2pu7xe7mPy9kBTLTnPbKGfqJRPgCm0A88fO
+s46VwXb66KM7AgUKrgvn93fs3Rhu0hFb1gFKGrgHHVz8X1TKZmPNGDl80Cme+Kbn
+h5jAEISPdz5P+RYbQtyuvn3il5dLLMTG/qVcyMI2wTSYXLyWV7OC+pvK5WCa2Y2y
+JLQ2R1uPY8Avx86gYis2vCLzxoKAGRBvfQuh/qlREkeEkCPIjTOfK09Ufn+LZy/p
+uzRBgYwgNc1EhpR1Mgac6L8cdG49Zct+njD7UpO+MUEykRsPRvSOS2J+9sQocfER
+SwSR4wFHZfsKiT9vpRNBEhp1v3fC7vZppZGK9zNqyFHxDkHOm0g1/dCCjomEQ69m
+f1jBPzfSkF1ssNlpxSn7s2i8sdiYyZsgR9kQK2EsBInWtFk8kyMbvEYreifalp/y
+w52cTWaTN6v2vbcuCOJdG77sJHqRsAwggm5phROd0h9gkIhKVNnwmDM6FK8PB6bq
+hg+PHlyfP3Ev0x8w+9G6Rw7g24mhKhB3yC7OP2gWqyiAvQHegW4=
+=KBpd
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.cms.reference-0.14.0-sources.jar.md5
==============================================================================
--- release/sling/org.apache.sling.cms.reference-0.14.0-sources.jar.md5 (added)
+++ release/sling/org.apache.sling.cms.reference-0.14.0-sources.jar.md5 Sat Nov 23 02:35:15 2019
@@ -0,0 +1 @@
+a80aa8db67c91e1e20ac7a6ec9e9c1c3
\ No newline at end of file

Added: release/sling/org.apache.sling.cms.reference-0.14.0-sources.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.cms.reference-0.14.0-sources.jar.sha1 (added)
+++ release/sling/org.apache.sling.cms.reference-0.14.0-sources.jar.sha1 Sat Nov 23 02:35:15 2019
@@ -0,0 +1 @@
+b564472e39f26ae1e24e47ed8f45f7c558a9e8ab
\ No newline at end of file

Added: release/sling/org.apache.sling.cms.reference-0.14.0.jar
==============================================================================
Binary file - no diff available.

Propchange: release/sling/org.apache.sling.cms.reference-0.14.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/sling/org.apache.sling.cms.reference-0.14.0.jar.asc
==============================================================================
--- release/sling/org.apache.sling.cms.reference-0.14.0.jar.asc (added)
+++ release/sling/org.apache.sling.cms.reference-0.14.0.jar.asc Sat Nov 23 02:35:15 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEETXg0f09Pho2Ows0T8OrBpExuQSQFAl3TbiEACgkQ8OrBpExu
+QSSeMA//ZW0BRY1QWg8borfmlKq5l1gLetsbwexMYT5yigNwNzkIfwndntkAW+io
+QeSJ4AaAmR0GiBdx8oGUz8cPw817l3XuyFWL8yAo15IlL9RF55nZ7golOvM7XoAZ
+gLLb/R+2EWVtI8VJNCJd+bbiik6BN6Luv7iT7wN3nSV9fl62Jf3K+orkdxH18Wr0
+MvF4VuuAWDbnOzMpF2I6QoqrkGKel+PAkdOK4spfPJoN8iIYOrs11+5b97g0gIfd
+DsuzW+J0ci+QUaoUSmAwL1eqTzkevVhDvOnfjcxkCyRDdnPQncuFUWN1Cqshc/ln
+1XRa7496sgWaRbS7Jdx3uqIdoXHjH2GXsYDZ8y6s3KgcKdPIU0KYBk4b5GhLgPDN
+iqmwXI8nR4+VmTRWJ8HiOzpHfRSjeoH0E/WHhSqm/cLU0DJCiszTARw9wN6qSB+k
+a07JgkTt9lA5cDea+XbbnlqwZV+ijkoyHB3xdojjo3tC7drnBPPtMsTekeqZ/1sM
+XIvpwUkUBvlLStUqxLoJUGwzqI0VCJKbca7/DidtQB8B83772crallLo6WWAIL5G
+DwWPE6bLnxBd/YB52aBdWYc//s/WCvyRSxNMR1DFJklmtC+tYNcQIW8Zdlu7Dx1s
+8Rn1Cu1CXjIyY9FUZJufOKrLuH7LJLtzFb/9JLja5U4dei9B6MQ=
+=ynR4
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.cms.reference-0.14.0.jar.md5
==============================================================================
--- release/sling/org.apache.sling.cms.reference-0.14.0.jar.md5 (added)
+++ release/sling/org.apache.sling.cms.reference-0.14.0.jar.md5 Sat Nov 23 02:35:15 2019
@@ -0,0 +1 @@
+06b59999ebf3c1d73e45a425e09aee77
\ No newline at end of file

Added: release/sling/org.apache.sling.cms.reference-0.14.0.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.cms.reference-0.14.0.jar.sha1 (added)
+++ release/sling/org.apache.sling.cms.reference-0.14.0.jar.sha1 Sat Nov 23 02:35:15 2019
@@ -0,0 +1 @@
+a7637260bee10915299f87d1118c0ff03b0061ec
\ No newline at end of file

Added: release/sling/org.apache.sling.cms.reference-0.14.0.pom
==============================================================================
--- release/sling/org.apache.sling.cms.reference-0.14.0.pom (added)
+++ release/sling/org.apache.sling.cms.reference-0.14.0.pom Sat Nov 23 02:35:15 2019
@@ -0,0 +1,191 @@
+<?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>
+        <artifactId>org.apache.sling.cms</artifactId>
+        <groupId>org.apache.sling</groupId>
+        <version>0.14.0</version>
+    </parent>
+    <artifactId>org.apache.sling.cms.reference</artifactId>
+    <packaging>bundle</packaging>
+    <name>Apache Sling - CMS Reference Application</name>
+    <description>A reference application within the Apache Sling Reference CMS Application</description>
+
+    <build>
+        <plugins>
+            <plugin>
+                <artifactId>maven-resources-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <id>copy-resources</id>
+                        <phase>validate</phase>
+                        <goals>
+                            <goal>copy-resources</goal>
+                        </goals>
+                        <configuration>
+                            <outputDirectory>${basedir}/${frontend.target}</outputDirectory>
+                            <resources>
+                                <resource>
+                                    <directory>src/main/frontend</directory>
+                                </resource>
+                            </resources>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-bundle-plugin</artifactId>
+                <extensions>true</extensions>
+                <configuration>
+                    <instructions>
+                        <Sling-Initial-Content>
+                            jcr_root,
+                            jcr_root/apps/reference;overwrite:=true;uninstall:=true;path:=/apps/reference,
+                            jcr_root/content/apache;overwrite:=false;uninstall:=false;path:=/content/apache,
+                            jcr_root/etc/taxonomy/reference;overwrite:=false;uninstall:=false;path:=/etc/taxonomy/reference,
+                            jcr_root/static/clientlibs/reference;overwrite=true;ignoreImportProviders:=xml;path:=/static/clientlibs/reference
+                        </Sling-Initial-Content>
+                        <Sling-Model-Packages>
+                            org.apache.sling.cms.reference.models,
+                            org.apache.sling.cms.reference.forms.impl,
+                        </Sling-Model-Packages>
+                    </instructions>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.cms.api</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.geronimo.specs</groupId>
+            <artifactId>geronimo-atinject_1.0_spec</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>javax.servlet</groupId>
+            <artifactId>servlet-api</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.service.component.annotations</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.service.metatype.annotations</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>osgi.core</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>osgi.cmpn</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>javax.jcr</groupId>
+            <artifactId>jcr</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.api</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-api</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.models.api</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.commons</groupId>
+            <artifactId>commons-lang3</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.jackrabbit</groupId>
+            <artifactId>jackrabbit-jcr-commons</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>osgi.annotation</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>javax.servlet</groupId>
+            <artifactId>javax.servlet-api</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>jstl</groupId>
+            <artifactId>jstl</artifactId>
+            <version>1.2</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.scripting.jsp.taglib</artifactId>
+            <version>2.3.0</version>
+        </dependency>
+        <dependency>
+            <groupId>javax.servlet</groupId>
+            <artifactId>jsp-api</artifactId>
+            <version>2.0</version>
+        </dependency>
+        <dependency>
+            <artifactId>commons-email</artifactId>
+            <groupId>org.apache.commons</groupId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.event.api</artifactId>
+        </dependency>
+
+        <!-- Testing dependencies -->
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.testing.sling-mock.junit4</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.mockito</groupId>
+            <artifactId>mockito-core</artifactId>
+        </dependency>
+    </dependencies>
+
+    <profiles>
+        <profile>
+            <id>autoInstallBundle</id>
+            <build>
+                <plugins>
+                    <plugin>
+                        <groupId>org.apache.sling</groupId>
+                        <artifactId>maven-sling-plugin</artifactId>
+                        <executions>
+                            <execution>
+                                <id>install-bundle</id>
+                                <goals>
+                                    <goal>install</goal>
+                                </goals>
+                                <configuration>
+                                    <slingUrl>${sling.protocol}://${sling.host}:${sling.port}/system/console</slingUrl>
+                                    <user>${sling.username}</user>
+                                    <password>${sling.password}</password>
+                                </configuration>
+                            </execution>
+                        </executions>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
+    </profiles>
+</project>
\ No newline at end of file

Added: release/sling/org.apache.sling.cms.reference-0.14.0.pom.asc
==============================================================================
--- release/sling/org.apache.sling.cms.reference-0.14.0.pom.asc (added)
+++ release/sling/org.apache.sling.cms.reference-0.14.0.pom.asc Sat Nov 23 02:35:15 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEETXg0f09Pho2Ows0T8OrBpExuQSQFAl3TbiIACgkQ8OrBpExu
+QSRCIQ/9EkJYFSvVU8xgOmmLiiZlTpwA63CypfakTScaomCYBviUMxH7reUvnAsy
+VfzXTw5e0yCF+ATHvCbJILg7k/0WRHvBdPl6GIKiek1C6utMIwW5asmzuM+OC/o5
+i4Yep5EW774eACUuhw8V5qvNpSVX5ATEe7fpO/nAqGdclEwkMcAk9Nvtg5gwzgkK
+TGjkncsgSSqK7uzibEJjyNi7YEM02EnlkgKGZ0OtixypcdoVDDB0GZon6IrtXdET
+gsm8Iz6avUa+X82i7Fkgi+VfpYGMgGL3F3EaCgXDQXeRfxj/84SQuDgOyacSYYQl
+AQuXitbfFMfQ3j3YnYAuMeTkfMrYha2D+SbIKYkSinPexWW1tp6D4p8kiMLcqVfs
+dqk7PPnj4GYE1JOt+kqYIHjYlUzLX3V3fA/rc35CEml+tdJlK/gZ7GAjmL6noPqe
+YB0xq68cbeli2yi6vzOmk7Oyc2uL4Df+gG39guu2MDUbKgi+5YSImlomdgaeYhyD
+xChcYx6ADx5TRmwKo3DzJXaonaAAbL1sGpEmpHnpwMClOb6d/Qp9rYpgXHd3S1/o
+VgEWybU3FSp38GUjqHOZof5SrmhH8/fzSfzAsYTZyhVVCNtC3FVCkaJ0Pe8+6Zop
+k3W1DuFMYXZ9oieVkNUvEMxFPf9iwZHlQBOE5Oahcc101ZKuP5I=
+=Oy1g
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.cms.reference-0.14.0.pom.md5
==============================================================================
--- release/sling/org.apache.sling.cms.reference-0.14.0.pom.md5 (added)
+++ release/sling/org.apache.sling.cms.reference-0.14.0.pom.md5 Sat Nov 23 02:35:15 2019
@@ -0,0 +1 @@
+e708622761d0505f3f085afbc406f360
\ No newline at end of file

Added: release/sling/org.apache.sling.cms.reference-0.14.0.pom.sha1
==============================================================================
--- release/sling/org.apache.sling.cms.reference-0.14.0.pom.sha1 (added)
+++ release/sling/org.apache.sling.cms.reference-0.14.0.pom.sha1 Sat Nov 23 02:35:15 2019
@@ -0,0 +1 @@
+f4b484f56ee8c5f78e21993a9f3ff9789bfe3688
\ No newline at end of file

Added: release/sling/org.apache.sling.cms.transformer-0.14.0-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: release/sling/org.apache.sling.cms.transformer-0.14.0-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/sling/org.apache.sling.cms.transformer-0.14.0-javadoc.jar.asc
==============================================================================
--- release/sling/org.apache.sling.cms.transformer-0.14.0-javadoc.jar.asc (added)
+++ release/sling/org.apache.sling.cms.transformer-0.14.0-javadoc.jar.asc Sat Nov 23 02:35:15 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEETXg0f09Pho2Ows0T8OrBpExuQSQFAl3TbgQACgkQ8OrBpExu
+QSRL/A//Zpwg5uYhPhBgteqOOBGHeUtu5tvZX/F4ChaAFXrzvu3flLRvS66wHgAX
+PRz/QH7Ut1N4bGb1oB31u8sDqwWkJUwkFgla2FSFyRWbt3WYa3O2jh/BnnlMu0Ls
+d60RAEhlasRa8+xOpIix6PcaSSiOo6yPUTuiooLaSIC2EtznXtGQDQLZBylSbEAM
+4/ff+Ik6llKp/7wVTQPEZZOaB2bHuAmy/9U9vH71PEAzdWtLoqAUe6hUnRL8wUSO
+njV+4H4euu7mzf2HjWVWQy0wyBIh0XQ4YtDg8n/fMA3xWYQnVt3IwqGmt6vApGbO
+vlLkkeglGtxzyzX6sJoUZvooyKJmW4uAuT7csPJ1EgWhU92C/+is/4ZrOTH73B6M
++F/L8i5itxp33+NDqoSOaTg9QXYeD+ACNG0Hqfe32IMoa6tuCGRmtmcnGWk2o2WH
+woiGJX7YvFfzczkgbF+bTm7toYzpJwipRKvB0R94WeIb1kS0MmuJaSDPIZQMw3PP
+EhyCJxFEGpMYvzOI30I1cnLKjZSn+5OfmLAaYWboKjTsAfiU+KYN5RNnkKFZerhX
+GmvLSRYsfEr/Pkz4/jFj/VHFELDrmEtKxPPlKHygTOMChVvNdy1Ku+jcA7nqxdHn
+nO0oWLuzhHg8hJXFOlsYkx1VbGnmm26sIpk6yjf2y7Sez5sd6dE=
+=aF0P
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.cms.transformer-0.14.0-javadoc.jar.md5
==============================================================================
--- release/sling/org.apache.sling.cms.transformer-0.14.0-javadoc.jar.md5 (added)
+++ release/sling/org.apache.sling.cms.transformer-0.14.0-javadoc.jar.md5 Sat Nov 23 02:35:15 2019
@@ -0,0 +1 @@
+589e77514bdb52f419eef9367c861c4f
\ No newline at end of file

Added: release/sling/org.apache.sling.cms.transformer-0.14.0-javadoc.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.cms.transformer-0.14.0-javadoc.jar.sha1 (added)
+++ release/sling/org.apache.sling.cms.transformer-0.14.0-javadoc.jar.sha1 Sat Nov 23 02:35:15 2019
@@ -0,0 +1 @@
+9991b4ee92fa71682bcb14db4b8d05429ad56cfd
\ No newline at end of file

Added: release/sling/org.apache.sling.cms.transformer-0.14.0-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: release/sling/org.apache.sling.cms.transformer-0.14.0-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/sling/org.apache.sling.cms.transformer-0.14.0-sources.jar.asc
==============================================================================
--- release/sling/org.apache.sling.cms.transformer-0.14.0-sources.jar.asc (added)
+++ release/sling/org.apache.sling.cms.transformer-0.14.0-sources.jar.asc Sat Nov 23 02:35:15 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEETXg0f09Pho2Ows0T8OrBpExuQSQFAl3TbgMACgkQ8OrBpExu
+QSQGKQ//TJARoSaI6lrI9YT/UOylUqZ+xkBEDOHILHNCkHlYhh4iz/2VhW7l6X51
+mrlUKYFX2Dy04IGT0cAbKS9VTPeBKfhSBr7djRYysrVdm+svCvM8WZbEgahNK42o
+y7dS98YezwaLbXEvolq/gFlUGnvY1cqTEfUfESSxRoWWK/HGm3+fMscs2vj2GRso
+DI9XwP8Hw+L42Ab7vaBocQxuDUS336xwBmQcumBtflFxy7RspXvo8iO9YKukGBTu
+mpGJhFfvluEDRRSQxupDNiM3a0kqAO+4IN+/wm0FSbe9NN1YV30McbxULKyeOo8D
+8ijadFvfERzdBq0wk2hLplZLNbDqw1lMHzj77N/uahxCMRAHRgVteKpdKGjnWpxN
+wLk9j9vB0lU8wonhLbuDhFKkwTOdWXEaCkeVcouzsYXJGPWCRHJNM1Nm004cbGwk
+yoZN/AknrjDHPgRGYBH5WD4rBpYgflhj7M4VFMLafq9XeplrKXH3gvhpz7gDsN6b
+H6bxVlEVzcsOnyYv+Z+42U4m7DbuouE8NYi3MLd0qUvDdI1pIKej7RYJ111fmrYd
+7rJ/S14B6T23Z8l5iYNFWKXf5IyLatklmPaOI10Aqqh8YGKVpl3QUP5NdbDk+zeE
+Wd6Ce3kmNGD8VP8DMJc3wkW7gpFETMR7N7OffQcobuiDtkn+/7o=
+=2C0c
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.cms.transformer-0.14.0-sources.jar.md5
==============================================================================
--- release/sling/org.apache.sling.cms.transformer-0.14.0-sources.jar.md5 (added)
+++ release/sling/org.apache.sling.cms.transformer-0.14.0-sources.jar.md5 Sat Nov 23 02:35:15 2019
@@ -0,0 +1 @@
+70b6edf4d0ffae53a48516ef1f3f96a2
\ No newline at end of file

Added: release/sling/org.apache.sling.cms.transformer-0.14.0-sources.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.cms.transformer-0.14.0-sources.jar.sha1 (added)
+++ release/sling/org.apache.sling.cms.transformer-0.14.0-sources.jar.sha1 Sat Nov 23 02:35:15 2019
@@ -0,0 +1 @@
+bd2f8139517412a7d58cb80bdf68f60bc3736419
\ No newline at end of file

Added: release/sling/org.apache.sling.cms.transformer-0.14.0.jar
==============================================================================
Binary file - no diff available.

Propchange: release/sling/org.apache.sling.cms.transformer-0.14.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/sling/org.apache.sling.cms.transformer-0.14.0.jar.asc
==============================================================================
--- release/sling/org.apache.sling.cms.transformer-0.14.0.jar.asc (added)
+++ release/sling/org.apache.sling.cms.transformer-0.14.0.jar.asc Sat Nov 23 02:35:15 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEETXg0f09Pho2Ows0T8OrBpExuQSQFAl3TbgMACgkQ8OrBpExu
+QSSMLRAAgsXxIHs7OzkOGDoPdxVZZv2mOHimGivAeeHAgubxxFz18tb/rkE7zNIt
+yZ3kYRqWbQDWxPIpXgBdyM/9Gm6NRUoneT1Gaups2yQUdT9A8AAcOIQg1E8rg7vY
+XQDR762Na5H/cuTz8Z+7d220STVpM+fx6aG3Q0soiOUIM0ojBw/Wc1KSFtFWPPoS
+0LNVNhaEtp7Qg9lDZuMAkqfAD/8iMnbPB/kRYwknXejgpeMNY9mJqAhV9oFK9EOq
+FKjzkTsI0nYoHN+MGmP2WKEQ6lzoGSZAF6EII9gVUfEUANwEqoLITBuBUpn+6Kry
++zR+Q9OYnjWQd1p6n/zWpysOqIOt77SjVZJ0EBBvrsqfnkQZrZT3AbUaA+9jaSiD
+wj/84HijJTACt86AmjM2prAXHOF9ILqNmpjYYqTF2c21FUGQ7Y65TGlaskeMoS2A
+J1bgJuIV2HBogkR8Ws5sdFNnL4w/CeeF0SsIj75VPbAzlraTjQ8J72wKnW2nBEHg
+VSCT3SsNUiM2cbMxYGf2jrJOWyvtfPkHuR1Fhqa9ebvSG3kyE3jVEICKJfN2qbe6
+dpxnVr9UmwRJQstYZbFzz256HvZCERgrf+zq4e14WKc13I6QfjkJdbnBCU/AkLwr
+5t5Pn6+hrEISz3Wh2t3Jqp18jzLMyQrhZwgsLAIq9ukdNg0Lbl4=
+=+peh
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.cms.transformer-0.14.0.jar.md5
==============================================================================
--- release/sling/org.apache.sling.cms.transformer-0.14.0.jar.md5 (added)
+++ release/sling/org.apache.sling.cms.transformer-0.14.0.jar.md5 Sat Nov 23 02:35:15 2019
@@ -0,0 +1 @@
+5cd1765528d05ceeeac51cdbe57e9eef
\ No newline at end of file

Added: release/sling/org.apache.sling.cms.transformer-0.14.0.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.cms.transformer-0.14.0.jar.sha1 (added)
+++ release/sling/org.apache.sling.cms.transformer-0.14.0.jar.sha1 Sat Nov 23 02:35:15 2019
@@ -0,0 +1 @@
+56dc5cec5136b1a02030cf282dad25a92332217c
\ No newline at end of file

Added: release/sling/org.apache.sling.cms.transformer-0.14.0.pom
==============================================================================
--- release/sling/org.apache.sling.cms.transformer-0.14.0.pom (added)
+++ release/sling/org.apache.sling.cms.transformer-0.14.0.pom Sat Nov 23 02:35:15 2019
@@ -0,0 +1,219 @@
+<?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>
+        <artifactId>org.apache.sling.cms</artifactId>
+        <groupId>org.apache.sling</groupId>
+        <version>0.14.0</version>
+    </parent>
+    <artifactId>org.apache.sling.cms.transformer</artifactId>
+    <packaging>bundle</packaging>
+    <name>Apache Sling - Transformer</name>
+    <description>An API and Service for creating and transforming images and documents into thumbnails</description>
+
+    <properties>
+        <sling.java.version>8</sling.java.version>
+    </properties>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-bundle-plugin</artifactId>
+                <extensions>true</extensions>
+                <configuration>
+                    <instructions>
+                        <Embed-Dependency>*;scope=compile|runtime</Embed-Dependency>
+                        <Export-Package>org.apache.sling.cms.transformer,net.coobird.thumbnailator.*</Export-Package>
+                        
+                        <Sling-Model-Packages>
+                            org.apache.sling.cms.transformer
+                        </Sling-Model-Packages>
+                    </instructions>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <configuration>
+                    <source>8</source>
+                    <target>8</target>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.sling</groupId>
+                <artifactId>maven-sling-plugin</artifactId>
+                <configuration>
+                    <slingUrl>${sling.protocol}://${sling.host}:${sling.port}/system/console</slingUrl>
+                    <user>${sling.username}</user>
+                    <password>${sling.password}</password>
+                </configuration>
+            </plugin>          
+            <plugin>
+                <groupId>org.apache.rat</groupId>
+                <artifactId>apache-rat-plugin</artifactId>
+                <configuration>
+                    <excludes>
+                        <!-- Used by maven-remote-resources-plugin -->
+                        <exclude>src/main/appended-resources/META-INF/*</exclude>
+                        <!-- Generated by maven-remote-resources-plugin -->
+                        <exclude>velocity.log</exclude>
+                        <!-- don't check anything in target -->
+                        <exclude>target/*</exclude>
+                        <!-- for some reason Rat doesn't seem to pick up that PPTs are binary -->
+                        <exclude>src/test/resources/*.ppt</exclude>
+                    </excludes>
+                </configuration>
+                <executions>
+                    <execution>
+                        <phase>verify</phase>
+                        <goals>
+                            <goal>check</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+
+    <profiles>
+        <profile>
+            <id>autoInstallBundle</id>
+            <build>
+                <plugins>
+                    <plugin>
+                        <groupId>org.apache.sling</groupId>
+                        <artifactId>maven-sling-plugin</artifactId>
+                        <executions>
+                            <execution>
+                                <id>install-bundle</id>
+                                <goals>
+                                    <goal>install</goal>
+                                </goals>
+                            </execution>
+                        </executions>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
+    </profiles>
+
+    <dependencies>
+
+        <dependency>
+            <groupId>javax.servlet</groupId>
+            <artifactId>servlet-api</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.felix</groupId>
+            <artifactId>org.apache.felix.webconsole</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>osgi.annotation</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.service.component.annotations</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.service.metatype.annotations</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>osgi.core</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>osgi.cmpn</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-api</artifactId>
+        </dependency>
+
+        <!-- Sling Dependencies -->
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.api</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.caconfig.api</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.cms.api</artifactId>
+            <version>${project.version}</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.cms.core</artifactId>
+            <version>${project.version}</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.event.api</artifactId>
+            <scope>test</scope>
+        </dependency>
+
+        <!-- Utilities -->
+        <dependency>
+            <groupId>commons-io</groupId>
+            <artifactId>commons-io</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>com.google.guava</groupId>
+            <artifactId>guava</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.commons</groupId>
+            <artifactId>commons-lang3</artifactId>
+        </dependency>
+
+        <!-- Document handling -->
+        <dependency>
+            <groupId>net.coobird</groupId>
+            <artifactId>thumbnailator</artifactId>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <artifactId>pdfbox</artifactId>
+            <groupId>org.apache.pdfbox</groupId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.poi</groupId>
+            <artifactId>poi-ooxml</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.poi</groupId>
+            <artifactId>poi-scratchpad</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.tika</groupId>
+            <artifactId>tika-core</artifactId>
+        </dependency>
+
+        <!-- Testing dependencies -->
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.testing.sling-mock.junit4</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.mockito</groupId>
+            <artifactId>mockito-core</artifactId>
+        </dependency>
+    </dependencies>
+</project>
\ No newline at end of file

Added: release/sling/org.apache.sling.cms.transformer-0.14.0.pom.asc
==============================================================================
--- release/sling/org.apache.sling.cms.transformer-0.14.0.pom.asc (added)
+++ release/sling/org.apache.sling.cms.transformer-0.14.0.pom.asc Sat Nov 23 02:35:15 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEETXg0f09Pho2Ows0T8OrBpExuQSQFAl3TbgMACgkQ8OrBpExu
+QSQSCg/+MahOKs33S5VEfem2LoJ4zJW/+eXJ0ncE7yDOkMcbB2vaNpMDAiRU8rwv
+2cmiFdlYCH2ZGXV0Q5DHQY1/Iw2OkWoV0lUOvLWV2ibnb9btb04FzpAYrQM4CjDu
+WDsGGD5/RTehBNfGjYnL+FifoZcYdJ1GdPGQA+r+jPKlJkKrELFHAInXqriog79D
+f3N4KBbAmoM+z6USUBQamFoFvkr25qrJ/AYurn8tubElqXluo+CPBEvGbpnOQCZ7
+C3s9c4d3b9JduujHLCve7zcmr9BQUhmG9r/Os93zmLSqINBvbCOXAsUAaZLysSY+
+k4g7bCpEN7vrC3zJOWCcU46DA9MHwLDx597EDjcC5Npd+CXYvr8FKFCMLH8dLVAn
+6uT0yu1rfLQvLwXmVPF2f23Hv8O/RYejUJC8WDRJLYXDJYeS7KgDA+rjfxM0JZHY
+r3QfRfO5+wsKs8GdAbWsCu7GjrX+u2rlF/d+Fuzgz1hgP/Xt+HFK8OnjS1oe8WRE
+V8WDYCEtKSh5WB/wl5cT/B9SEnrkkInEfwC73Vl9V6cAir+TVaaopuCqPlaFRvwd
+IEHN+6IBiOYDKdKTyrLY4sBne3qk57xjorBxjYlMgits9R3T9YjDU0dfU4eKoBhV
+pzxflIscy8Ojl7kitq6TGbi24SsbtTg3isnwsEQ09bXWE5Sxgqo=
+=e4x4
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.cms.transformer-0.14.0.pom.md5
==============================================================================
--- release/sling/org.apache.sling.cms.transformer-0.14.0.pom.md5 (added)
+++ release/sling/org.apache.sling.cms.transformer-0.14.0.pom.md5 Sat Nov 23 02:35:15 2019
@@ -0,0 +1 @@
+aae3fae16a3d069fd28e9276891e7fd9
\ No newline at end of file

Added: release/sling/org.apache.sling.cms.transformer-0.14.0.pom.sha1
==============================================================================
--- release/sling/org.apache.sling.cms.transformer-0.14.0.pom.sha1 (added)
+++ release/sling/org.apache.sling.cms.transformer-0.14.0.pom.sha1 Sat Nov 23 02:35:15 2019
@@ -0,0 +1 @@
+58109951954a7e8246fba03c3561b9c76818feba
\ No newline at end of file

Added: release/sling/org.apache.sling.cms.ui-0.14.0-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: release/sling/org.apache.sling.cms.ui-0.14.0-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/sling/org.apache.sling.cms.ui-0.14.0-sources.jar.asc
==============================================================================
--- release/sling/org.apache.sling.cms.ui-0.14.0-sources.jar.asc (added)
+++ release/sling/org.apache.sling.cms.ui-0.14.0-sources.jar.asc Sat Nov 23 02:35:15 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEETXg0f09Pho2Ows0T8OrBpExuQSQFAl3TbhcACgkQ8OrBpExu
+QSR64RAA4Mm7ZPYm+HToI43PKzCoNRsgNXJ5igG6w/RjD1AmbE7iy5xIEQDk6kEh
+YjD/sm218R/9yENm5GllcpdIBJmg5FQc1Grse6D83ZwjkqIUZ54wCGYM2yoA/d/o
+wBCI+CbzfN4CV842pJoMEHE9tasl6KOPiiXf8WWkKUZhXBtG5DkzG5dCgES0MpVM
+Ncj3K6fmSg0O13fTmNCW/BJBaqsxtosHPwgY/tndnu4j0nVY+HShezwhSAresVOc
+4Ijo2jpFc0To2I/BtqPOdvfVp/rJfLhlCBGO2AkX2b5DWLYtFpLmNOXBtSmuwJS9
+Sv0GEPQnZky75M7KI2veTlFuVWOO2CyqSCYvpfHLf5MWr3c4Oa2SwwS/puZyQIue
+6HV80wZaTDigkjcqnv8htT6oGVI9OAJBEL1Ppt1LyPx5n1XvgymMiHh6WMyOp8WS
+0w5VCsbb0S8eV44CMNL1Xdi584Buitk75XuKyql2LU7DlyVjTPf7Na5n93YA3BmK
+pSVJdwHz1i5OBGCMevu1k2XhtFfzgut9yTyPAM9QqWGjmFaueoJF2YRm3Cfk4AAt
+chC05lou93oTJvF+8EmvTwSMPDQ8kDPKwYb9g+bLdCK1p58k8Iiel4c9gZXEgDFj
+2GMB2iw4uIyGMmOi+19ogjXSvWtcQrMEGu1cKPX0I8/71k/fR/U=
+=R3kC
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.cms.ui-0.14.0-sources.jar.md5
==============================================================================
--- release/sling/org.apache.sling.cms.ui-0.14.0-sources.jar.md5 (added)
+++ release/sling/org.apache.sling.cms.ui-0.14.0-sources.jar.md5 Sat Nov 23 02:35:15 2019
@@ -0,0 +1 @@
+196639102f40866b08a895a35ed4f6b0
\ No newline at end of file

Added: release/sling/org.apache.sling.cms.ui-0.14.0-sources.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.cms.ui-0.14.0-sources.jar.sha1 (added)
+++ release/sling/org.apache.sling.cms.ui-0.14.0-sources.jar.sha1 Sat Nov 23 02:35:15 2019
@@ -0,0 +1 @@
+755f6545412b20325f2f0581a166fa58a10e9dc9
\ No newline at end of file

Added: release/sling/org.apache.sling.cms.ui-0.14.0.jar
==============================================================================
Binary file - no diff available.

Propchange: release/sling/org.apache.sling.cms.ui-0.14.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/sling/org.apache.sling.cms.ui-0.14.0.jar.asc
==============================================================================
--- release/sling/org.apache.sling.cms.ui-0.14.0.jar.asc (added)
+++ release/sling/org.apache.sling.cms.ui-0.14.0.jar.asc Sat Nov 23 02:35:15 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEETXg0f09Pho2Ows0T8OrBpExuQSQFAl3TbhcACgkQ8OrBpExu
+QSTTYQ/+Kb1SKy1X9hKe4Fz6NQczVJwx5MuMlp8gF7G8qah3xT3B1jjRC5f4whZM
+ZbQFaegZ6s/rfPT73DU9Y8ImKcP5eOKlSGk14V98LYesxbwt+yERB2iVfuNCbk7J
+50KZcROHLCd6zIS/WWjEjy4RtUZ5VpeWuEoM9CVNw8B/4NZFpiSUhmVPUM3lln5w
+TPWh7G409HUW9kuP9jproHa3OH1dS6SPh9IukT4tys5Nacz/7yTBckWyGZ42l/3u
+sKdvf4UE86ygWw/j3g4SurpTNtEr06bMWUogh0Q0n3iIEt+PQhfur65ZjAGYg/SS
+qN5QQxaN9qa9grFwk/Qc2E1OxYGrJ6IaS4JTeUZD3O13cA200bskdDslaiEO13AF
+LnSncUTci0m65tLqCHWJTAo3xIvYUHj/KEqy/uEknghHkfb0HHBYYMBeO9D84Q/F
+kfR+txJkyjkOhWnBI3thfF6MvNtoAMlyakQkNh8eSrx68wDWPIgOOPFsUTS59TDu
+3CKntHMyUPwfr+e9HFkQgCt99xfORFIZbOePoAK++HWe8P8CC+9d2/eHXMAUk0vs
+Cmy94vnQ7RC+idDAtgX6W1EK/VuRjoj7GDRyFMxuH9zZCsCF6mXHUKUuLyEegxZm
+HVVUo0Zr/KZW1biPUVMrEqobPWZqToJZLeM6pGnLmlZbJToraVU=
+=uZN8
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.cms.ui-0.14.0.jar.md5
==============================================================================
--- release/sling/org.apache.sling.cms.ui-0.14.0.jar.md5 (added)
+++ release/sling/org.apache.sling.cms.ui-0.14.0.jar.md5 Sat Nov 23 02:35:15 2019
@@ -0,0 +1 @@
+1e1b115d908522d85cb5f1b2b1d6a1db
\ No newline at end of file

Added: release/sling/org.apache.sling.cms.ui-0.14.0.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.cms.ui-0.14.0.jar.sha1 (added)
+++ release/sling/org.apache.sling.cms.ui-0.14.0.jar.sha1 Sat Nov 23 02:35:15 2019
@@ -0,0 +1 @@
+3690b955ae70e6d3c3c62d0079ed1cc88427e287
\ No newline at end of file

Added: release/sling/org.apache.sling.cms.ui-0.14.0.pom
==============================================================================
--- release/sling/org.apache.sling.cms.ui-0.14.0.pom (added)
+++ release/sling/org.apache.sling.cms.ui-0.14.0.pom Sat Nov 23 02:35:15 2019
@@ -0,0 +1,205 @@
+<?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>
+        <artifactId>org.apache.sling.cms</artifactId>
+        <groupId>org.apache.sling</groupId>
+        <version>0.14.0</version>
+    </parent>
+    <artifactId>org.apache.sling.cms.ui</artifactId>
+    <packaging>bundle</packaging>
+    <name>Apache Sling - CMS UI</name>
+    <description>A bundle providing the User Interface for the Apache Sling Reference CMS Application</description>
+
+    <properties>
+        <frontend.target>target/frontend</frontend.target>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>javax.servlet</groupId>
+            <artifactId>javax.servlet-api</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>jstl</groupId>
+            <artifactId>jstl</artifactId>
+            <version>1.2</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.scripting.jsp.taglib</artifactId>
+            <version>2.3.0</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>javax.servlet</groupId>
+            <artifactId>jsp-api</artifactId>
+            <version>2.0</version>
+            <scope>provided</scope>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <plugins>
+
+            <plugin>
+                <groupId>org.apache.rat</groupId>
+                <artifactId>apache-rat-plugin</artifactId>
+                <configuration>
+                    <excludes>
+                        <exclude>**/*.webmanifest</exclude>
+                    </excludes>
+                </configuration>
+                <executions>
+                    <execution>
+                        <phase>verify</phase>
+                        <goals>
+                            <goal>check</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <artifactId>maven-resources-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <id>copy-resources</id>
+                        <phase>validate</phase>
+                        <goals>
+                            <goal>copy-resources</goal>
+                        </goals>
+                        <configuration>
+                            <outputDirectory>${basedir}/${frontend.target}</outputDirectory>
+                            <resources>
+                                <resource>
+                                    <directory>src/main/frontend</directory>
+                                </resource>
+                            </resources>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+
+            <plugin>
+                <groupId>com.github.eirslett</groupId>
+                <artifactId>frontend-maven-plugin</artifactId>
+                <version>1.7.6</version>
+                <executions>
+                    <execution>
+                        <id>install node and npm</id>
+                        <goals>
+                            <goal>install-node-and-npm</goal>
+                        </goals>
+                        <configuration>
+                            <nodeVersion>v11.14.0</nodeVersion>
+                            <npmVersion>6.9.0</npmVersion>
+                        </configuration>
+                    </execution>
+                    <execution>
+                        <id>npm install</id>
+                        <goals>
+                            <goal>npm</goal>
+                        </goals>
+                        <configuration>
+                            <arguments>install</arguments>
+                        </configuration>
+                    </execution>
+                    <execution>
+                        <id>gulp build</id>
+                        <goals>
+                            <goal>gulp</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-bundle-plugin</artifactId>
+                <extensions>true</extensions>
+                <configuration>
+                    <instructions>
+                        <Sling-Nodetypes>SLING-INF/nodetypes/nodetypes.cnd</Sling-Nodetypes>
+                        <Sling-Initial-Content>
+                            jcr_root;ignoreImportProviders:=xml,
+                            jcr_root/oak%3Aindex;overwrite:=false;uninstall:=true;path:=/oak:index,
+                            jcr_root/conf/global;overwrite:=false;uninstall:=true;path:=/conf/global,
+                            jcr_root/etc/clientlibs;overwrite=true;ignoreImportProviders:=xml;path:=/etc/clientlibs,
+                            jcr_root/etc/taxonomy;overwrite:=false;uninstall:=true;path:=/etc/taxonomy,
+                            jcr_root/libs/sling/servlet/errorhandler;overwriteProperties:=true;overwrite:=true;uninstall:=true;path:=/libs/sling/servlet/errorhandler,
+                            jcr_root/libs/sling-cms;overwrite:=true;uninstall:=true;path:=/libs/sling-cms,
+                            jcr_root/static/clientlibs/sling-cms;overwrite:=true;uninstall:=true;path:=/static/clientlibs/sling-cms;ignoreImportProviders:=xml,
+                            jcr_root/static/sling-cms/thumbnails;overwrite:=true;uninstall:=true;path:=/static/sling-cms/thumbnails;ignoreImportProviders:=xml
+                        </Sling-Initial-Content>
+                        <Include-Resource>{maven-resources},${basedir}/target/frontend/dist</Include-Resource>
+                    </instructions>
+                </configuration>
+            </plugin>
+        </plugins>
+
+        <pluginManagement>
+            <plugins>
+                <plugin>
+                    <groupId>org.eclipse.m2e</groupId>
+                    <artifactId>lifecycle-mapping</artifactId>
+                    <version>1.0.0</version>
+                    <configuration>
+                        <lifecycleMappingMetadata>
+                            <pluginExecutions>
+                                <pluginExecution>
+                                    <pluginExecutionFilter>
+                                        <groupId>com.github.eirslett</groupId>
+                                        <artifactId>frontend-maven-plugin</artifactId>
+                                        <versionRange>[1.0.0,)</versionRange>
+                                        <goals>
+                                            <goal>install-node-and-npm</goal>
+                                            <goal>npm</goal>
+                                            <goal>gulp</goal>
+                                        </goals>
+                                    </pluginExecutionFilter>
+                                    <action>
+                                        <ignore />
+                                    </action>
+                                </pluginExecution>
+                            </pluginExecutions>
+                        </lifecycleMappingMetadata>
+                    </configuration>
+                </plugin>
+            </plugins>
+        </pluginManagement>
+    </build>
+
+
+    <profiles>
+        <profile>
+            <id>autoInstallBundle</id>
+            <build>
+                <plugins>
+                    <plugin>
+                        <groupId>org.apache.sling</groupId>
+                        <artifactId>maven-sling-plugin</artifactId>
+                        <executions>
+                            <execution>
+                                <id>install-bundle</id>
+                                <goals>
+                                    <goal>install</goal>
+                                </goals>
+                                <configuration>
+                                    <slingUrl>${sling.protocol}://${sling.host}:${sling.port}/system/console</slingUrl>
+                                    <user>${sling.username}</user>
+                                    <password>${sling.password}</password>
+                                </configuration>
+                            </execution>
+                        </executions>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
+    </profiles>
+</project>

Added: release/sling/org.apache.sling.cms.ui-0.14.0.pom.asc
==============================================================================
--- release/sling/org.apache.sling.cms.ui-0.14.0.pom.asc (added)
+++ release/sling/org.apache.sling.cms.ui-0.14.0.pom.asc Sat Nov 23 02:35:15 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEETXg0f09Pho2Ows0T8OrBpExuQSQFAl3TbhcACgkQ8OrBpExu
+QSR53BAAsPRQfi0bUHPykrLue5fmnaQ6Ym4qEvHgPHCi3p5HDOEe/6KbOP3FRGRt
+sXo9yPPkAJy0gs1hJcoR9TXHAUSWXoca8eCDr5pv9V8rju26Kw3ItCzd7J3CrI2Q
+JNu+sHbkEZNcNE/9iRzgg6UJWIrBNZk9dhr+LbaO86m9gBjVLWYiP/uN+9ef5Bwa
+aCeIIKJXXqVyBqDWPySKDiidNvqoob3m422yJcnMv0SvzQZ46KXZ1tWpt2+IIUqC
+pBvN8j5QkJj0o+t5153u6dnPc4hA6rsLaA+qCBPxcvEO/nCNjtlbR9iyxneuA1kC
+qH2Rb0SCMdCBVeYANVPQ8gp2ilGARbs5oBBzEwp8nPqspyF5hjUmmy4tmRstjlz3
+DObz/D9f/J88VGsynYnaF86VTq0iSUXbervH4t4pSav4UtaKwcsdewAgwk/7Hb16
+/RvW7IIOIAWYEXPxLX7AOiw7Yp3KVkgVGaHNfAz9xn+mVg01Y1b6MUlnAk2/x1JW
+uHKRPZfbNlD4o3OsB8D+LynZuka9+tqT8+bQGwyUTVt5fdYCb6+ZVtR0Tp1Z5tBk
+mwYICEpTax8B7T1PYOJpFXZIvJGJVSJaGrZmdkCTStNTAWJiMJSkjLRtqQqXUt/E
+90cmzSx94k9iFgKz35pXzmMKTihre8lG8/ckqGVCs7VioRENI5w=
+=hKCQ
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.cms.ui-0.14.0.pom.md5
==============================================================================
--- release/sling/org.apache.sling.cms.ui-0.14.0.pom.md5 (added)
+++ release/sling/org.apache.sling.cms.ui-0.14.0.pom.md5 Sat Nov 23 02:35:15 2019
@@ -0,0 +1 @@
+1991e9b806d585c96e6f3a62649b9fd8
\ No newline at end of file

Added: release/sling/org.apache.sling.cms.ui-0.14.0.pom.sha1
==============================================================================
--- release/sling/org.apache.sling.cms.ui-0.14.0.pom.sha1 (added)
+++ release/sling/org.apache.sling.cms.ui-0.14.0.pom.sha1 Sat Nov 23 02:35:15 2019
@@ -0,0 +1 @@
+5c9fa03da365a6271f6d1031cfe169b2788f1e7a
\ No newline at end of file