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/06/03 17:35:05 UTC

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

Added: release/sling/org.apache.sling.cms.core-0.12.0.pom
==============================================================================
--- release/sling/org.apache.sling.cms.core-0.12.0.pom (added)
+++ release/sling/org.apache.sling.cms.core-0.12.0.pom Mon Jun  3 17:35:04 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.12.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.jcr.base</artifactId>
+        </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>
+    </dependencies>
+</project>
\ No newline at end of file

Added: release/sling/org.apache.sling.cms.core-0.12.0.pom.asc
==============================================================================
--- release/sling/org.apache.sling.cms.core-0.12.0.pom.asc (added)
+++ release/sling/org.apache.sling.cms.core-0.12.0.pom.asc Mon Jun  3 17:35:04 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEENj5pfUadRipAxSVsGFq0kOHJ39cFAlzuxZgACgkQGFq0kOHJ
+39cjXA/9EtgNslfEDqhFT0slXO4leAv8W+ib3dOOZKjYCO6brnxEL+wlkLel0UQ2
+2Xm3wExm9emoCOa6Ph4Uex6X8QGTt0z5MyBwYaT6b0sM2NcvQ625LV54ec6bgm96
+wiOoLtAfoXqaw1q2J5Xd6CoL0RuPRfgFmIVIk62fUZGhoYu5vKrNAUhfb4DtvpdY
+IlihugEjsj1tLLqLk084FWrBi5JM7+LzqQ9lRVSMRC0TgFzmWPSH2Num5N3s6ke5
+Hm+A40AI/gIP7eagYcXHGpSy0L1oR47D0uzO6JRveMhW4hJyqQADPdN62zXo04+5
+rIZuCAqwgR7WwJRr7k8vkYbza/+Rl3Q5qnFYMQQu7XQuBMVMmf3aZm1oji2dsFgt
+oXm53SM1aexXpR13UXCqciWpWlN/A0rA/sT0cNxPnvIyczayVrS0/N2WjH79Me9/
+NMATAlKKwJ9SrR+fY0RcMLoHtj8fCCyLXOhYYDGTYgnfLiJg9Am0l/vdPqaKi48r
+LeFf6AEnWLHAEM866jcq+gQLMt2gBQ9tGZq3LTbi7fEh0131IhHruMolNY6q3bG9
+PW7y4VCvkh4lAgTkVwcQhIl+IZQOAyhucUeHeEpySUdkMxWKxvb8hB4/EEbmDnRY
+o+HqtCc5SMmpC+Z8hoL7B7ysyAo9MrpMknS2L9H7H2bZonI07WA=
+=h8BB
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.cms.core-0.12.0.pom.md5
==============================================================================
--- release/sling/org.apache.sling.cms.core-0.12.0.pom.md5 (added)
+++ release/sling/org.apache.sling.cms.core-0.12.0.pom.md5 Mon Jun  3 17:35:04 2019
@@ -0,0 +1 @@
+97b66ba5a332ac0eb3bf38eee0145791
\ No newline at end of file

Added: release/sling/org.apache.sling.cms.core-0.12.0.pom.sha1
==============================================================================
--- release/sling/org.apache.sling.cms.core-0.12.0.pom.sha1 (added)
+++ release/sling/org.apache.sling.cms.core-0.12.0.pom.sha1 Mon Jun  3 17:35:04 2019
@@ -0,0 +1 @@
+9d942932b36e8981c361985b2715c46f1848ef0e
\ No newline at end of file

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

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

Added: release/sling/org.apache.sling.cms.reference-0.12.0-javadoc.jar.asc
==============================================================================
--- release/sling/org.apache.sling.cms.reference-0.12.0-javadoc.jar.asc (added)
+++ release/sling/org.apache.sling.cms.reference-0.12.0-javadoc.jar.asc Mon Jun  3 17:35:04 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEENj5pfUadRipAxSVsGFq0kOHJ39cFAlzuxk0ACgkQGFq0kOHJ
+39enGRAAuDyz7zgwvt0/1KZK3QZTKdUEsV8U8J5iuzxJqmP6i1QrIV+vgVcbzEzO
+CRypDmGp4u9hhlFuctsvnZo0tfi6APHrJ0EPYC5XHVfWVJRM7ExC1fif18qt+q+m
+ofl99/rDiHo5FSoVDktEyXt6HFSOju2nhEuK3lFee9Phh3UDyNKQX6SwDAawFDQo
+NI/Z6nXkT9uKdXEa9g18ufZoAsXRczRxsmIX6UN3Bp0Yc0b+WSot8cOR6mYSFHK/
+JmeKrmHbvGvc/7xiwFLy2Ap7epGQdrLQKmb/U74sB9ywlzjMOEnIoI6TAe4dA6wP
+8nbi404M+OoQCXg/rZ1U8sXC7RLMnVW/o12jgOWYeju/SpBy27uccwollpLNsCCj
+GmDgzyBHmvt+C/X899DpWbH826HY2dq3NMQ3fvF/C/VguDf/twHIhmqDpHaRa2kb
+USQ2LXxYwpR0V+Mr25oIg4Lhz4yO1fFIvgw9/N8IDnLP+AJSB2TEHlxxVTW5tVVi
+xzImsinR5Qnb3JEa1RFAz/ybXV2PFB26h8qHUG4+8mjEh75e2hRUKy9tz5agrZhT
+O583C0SwFwr5H3fiula1QbL06L1q7S1sWm9xcwK3+VRACfqNSMCzT7B4nfMTeSw8
+uotKU5REQTvp4C3hyrzdbb6gMlfDRkpjUHijTfXErtZHwNXciQE=
+=0UiC
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.cms.reference-0.12.0-javadoc.jar.md5
==============================================================================
--- release/sling/org.apache.sling.cms.reference-0.12.0-javadoc.jar.md5 (added)
+++ release/sling/org.apache.sling.cms.reference-0.12.0-javadoc.jar.md5 Mon Jun  3 17:35:04 2019
@@ -0,0 +1 @@
+1c10502f70a6df259d5af16dbe98fced
\ No newline at end of file

Added: release/sling/org.apache.sling.cms.reference-0.12.0-javadoc.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.cms.reference-0.12.0-javadoc.jar.sha1 (added)
+++ release/sling/org.apache.sling.cms.reference-0.12.0-javadoc.jar.sha1 Mon Jun  3 17:35:04 2019
@@ -0,0 +1 @@
+51a9550ec3688410a19700a70a65d9b09802348a
\ No newline at end of file

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

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

Added: release/sling/org.apache.sling.cms.reference-0.12.0-sources.jar.asc
==============================================================================
--- release/sling/org.apache.sling.cms.reference-0.12.0-sources.jar.asc (added)
+++ release/sling/org.apache.sling.cms.reference-0.12.0-sources.jar.asc Mon Jun  3 17:35:04 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEENj5pfUadRipAxSVsGFq0kOHJ39cFAlzuxk0ACgkQGFq0kOHJ
+39dY7hAAtHiXmoLw7zo8JCP1iQlU69JBpT8z4LcdS05FKeFlm1KQbxiq2FcT7BJN
+HQ8C9MQ+tzXimLkxC9jSq7S10bDoLAGInlhQWKUd2FfOHPxHXifJZTDgEh7kR+u/
+Y0j8WJ2Bq1zP2Si0vLVmreU00P089Sn7cN0M20ok1tGhm/MIjwj0SubFusRCbgMt
+S/BKurL4dY7Jr4yOLc27okBOgyAt4I5Rk1xQHmhyft8zWvBkpBDhuZ2/DHIQ7j3h
+QBssG05F9QoOBMKFDXNj0qj79H46Zd+h+hwVTqBkPxLa1V6aW7Ukc23utgkzu5M8
+unu76fbK/cJ/SllG2PLVWjodkjDyKEYQvevyn7pbx7RtAGlbRoNfbEHRPLlKvRJl
+QyQYwCqoxtIxn7FGXEGOdYTqcfcMqNDzi0bQq9Zp1xb3UneDrRGT+rVyBG34JTKz
+3DQN+vUbw/5QeH2NzWXf2idOUBlI0k4j6XDyWK9JrMIJPTAp4m27+JwSyV6abjbE
+ULC2F2BfYz1uVW0tAmUnhYEV90DpTxc6pSptFA/CUiCaPaTi2kLZyB1GV1YeXZ60
+RnHLo00JGCWxkwoDAaL8dscZJl9wzKpa9n8FYg6V6hQTikfT4PMWXl/lUPkwheR2
+xVfUkA/zERe72nIAZXhQJU8M8rGUFlqcBiwRcD1/ZukrYW989ow=
+=yUl1
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.cms.reference-0.12.0-sources.jar.md5
==============================================================================
--- release/sling/org.apache.sling.cms.reference-0.12.0-sources.jar.md5 (added)
+++ release/sling/org.apache.sling.cms.reference-0.12.0-sources.jar.md5 Mon Jun  3 17:35:04 2019
@@ -0,0 +1 @@
+e6490a19f3dddced510d5921cf3e7953
\ No newline at end of file

Added: release/sling/org.apache.sling.cms.reference-0.12.0-sources.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.cms.reference-0.12.0-sources.jar.sha1 (added)
+++ release/sling/org.apache.sling.cms.reference-0.12.0-sources.jar.sha1 Mon Jun  3 17:35:04 2019
@@ -0,0 +1 @@
+c07859d63c249fd23f138607bcd7c9f555f1c27d
\ No newline at end of file

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

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

Added: release/sling/org.apache.sling.cms.reference-0.12.0.jar.asc
==============================================================================
--- release/sling/org.apache.sling.cms.reference-0.12.0.jar.asc (added)
+++ release/sling/org.apache.sling.cms.reference-0.12.0.jar.asc Mon Jun  3 17:35:04 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEENj5pfUadRipAxSVsGFq0kOHJ39cFAlzuxk0ACgkQGFq0kOHJ
+39deXQ//UxZeEMUhRoTG24X+dkyv0137FS4vfLpqIa9IKHq+GDcLrF5/gr49E9N4
+lhWvFXcj8nvuwCDx81lUh4HmVbg7T1yUldTcnxXmof6vqzxmyj5gubq+2Fz8F/wX
+AqnLkq3ejIjDRXo0wXzB+G50nM6gXdnNBY7Zsq6IP7XEaNv4BQujU6yjRoALYCf3
+vPiCy3Njo6M2T12Vgs8YLT1H/mR7SQTE7ek11ADymt4vhUwCCYjf3aURh9qtfTHo
+TKx20Ns1OEERxSGxEHg9bUGyIt2fuiBdWSyguP5AifK2Fctyvh5nwk8Qp/VekPrm
++eSk2e4YnP7SPPjVUdC+IzIX5bkI3G9TxBbGEjTF9kLIG7517wW0QgkLsS6ZfeIq
+1h6RJUU6yjxwcBWUHQTz4u1IrQ1eHYR8FrkZPqfF+bfqPbe1S3LUgQ++xvezOrkJ
+dbZxQ+qUxNyA6D0GTgo2CbdSA26e+kr3nKjhAicPPA91CFw35ui1UO0Fko21hiDE
+CeGn+2BsCpAUZ+Q3Z2rwBJNC1X9O+bsYiIZ+5GCBe8Oze1aj7bSqeae2s5YykxXu
+J8BbHHOpRHyEjSm1BTpMKkQAsnkhzYIvo0LifpUcY7fndm4v4SgGTkLAKTeAUUVn
+bvHa09b4w7LUrkhQOEYNaTh0AwkhjWCWtxBf25WgGgHpn6GtDEg=
+=A4Cx
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.cms.reference-0.12.0.jar.md5
==============================================================================
--- release/sling/org.apache.sling.cms.reference-0.12.0.jar.md5 (added)
+++ release/sling/org.apache.sling.cms.reference-0.12.0.jar.md5 Mon Jun  3 17:35:04 2019
@@ -0,0 +1 @@
+472c437110ba375087a009854093e1c8
\ No newline at end of file

Added: release/sling/org.apache.sling.cms.reference-0.12.0.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.cms.reference-0.12.0.jar.sha1 (added)
+++ release/sling/org.apache.sling.cms.reference-0.12.0.jar.sha1 Mon Jun  3 17:35:04 2019
@@ -0,0 +1 @@
+1ff0aa26f19bfc89ef3d399005442dbd269ad7da
\ No newline at end of file

Added: release/sling/org.apache.sling.cms.reference-0.12.0.pom
==============================================================================
--- release/sling/org.apache.sling.cms.reference-0.12.0.pom (added)
+++ release/sling/org.apache.sling.cms.reference-0.12.0.pom Mon Jun  3 17:35:04 2019
@@ -0,0 +1,168 @@
+<?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.12.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
+                        </Sling-Model-Packages>
+                    </instructions>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.cms.core</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>
+    </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.12.0.pom.asc
==============================================================================
--- release/sling/org.apache.sling.cms.reference-0.12.0.pom.asc (added)
+++ release/sling/org.apache.sling.cms.reference-0.12.0.pom.asc Mon Jun  3 17:35:04 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEENj5pfUadRipAxSVsGFq0kOHJ39cFAlzuxk0ACgkQGFq0kOHJ
+39fpURAAgmneyuoMz7z80UyvxTRLQQ6++j0zEEGWBwMwmC3QjH81Ipq+PifJu1st
+dv2vdhj1hhqK2BEOp9J3/TKHHtXbgiecZ4Di1i1s4G/7yuH5W3XzZfn8Fl93W9cH
+CbN2iuKqhiUmqCDrUear5og5SL0gH0Iu7+sPPsuEKZeR9GwnYyEdgj3spW47DkuK
+PiFGcmHIyeHmyMaLAO5HAQ2LKW4wWs0vd88ClKTMgeFbmDl8gVsjaxh6mgIlNByK
+mtq902odBY1V+5ZDg95j8XtqSgcNbKvwkY6dVbkMTjMJNsvI+A0jP1UJ9MkXKoYd
+Tth1Te3MIcbe1zGdkaTjZzGvCczA2Zwp3XZyslF+tg4iTgbhBml1459BpKAGLup3
+zrla/k/l6NCfksNaTcph43V3oa+70QCHAGu0enxWhMmHStV+VzDULhVyw64N84tE
+JYj5qo2vVQxa6oLPwd8cxHoUCQ2wyPEiTxB4Awj7sutcA96834xBEU4YYtnsxNHA
+TAfPjg7ZT8d9d6a2AcvJgdofHC8liX2jP+9H/JU+8OsSVBphyT6+U5+bLmh9Dgt2
+A9QMYyNns4Lp7u5xjln7rwsZzmdBIyFBqYlAn8/jRVlKxp13xbZLmeFcugA+4Z3j
+Zco7rOCATZmGnCT1GdAvsIhVr8x4XePtAS/3Nbi+I/9neJg52vE=
+=Gumq
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.cms.reference-0.12.0.pom.md5
==============================================================================
--- release/sling/org.apache.sling.cms.reference-0.12.0.pom.md5 (added)
+++ release/sling/org.apache.sling.cms.reference-0.12.0.pom.md5 Mon Jun  3 17:35:04 2019
@@ -0,0 +1 @@
+1d3d7cd44a7bdad3293ba866305a9afe
\ No newline at end of file

Added: release/sling/org.apache.sling.cms.reference-0.12.0.pom.sha1
==============================================================================
--- release/sling/org.apache.sling.cms.reference-0.12.0.pom.sha1 (added)
+++ release/sling/org.apache.sling.cms.reference-0.12.0.pom.sha1 Mon Jun  3 17:35:04 2019
@@ -0,0 +1 @@
+1635b59775063c53933704741d077e36c7b90e61
\ No newline at end of file

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

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

Added: release/sling/org.apache.sling.cms.transformer-0.12.0-javadoc.jar.asc
==============================================================================
--- release/sling/org.apache.sling.cms.transformer-0.12.0-javadoc.jar.asc (added)
+++ release/sling/org.apache.sling.cms.transformer-0.12.0-javadoc.jar.asc Mon Jun  3 17:35:04 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEENj5pfUadRipAxSVsGFq0kOHJ39cFAlzuxa4ACgkQGFq0kOHJ
+39dQ2A//X2DmPuEPd4hW9HdLYgj6GyrKeSO9XKaNRT//VADAI5T2Synni2VlDozG
+sUwMFV7lp1/ve3XofnRWWdkiJz6RlOBjQdnNYpOCCDgfXmUm3brpmWoQq8eKVnHb
+JKL0MWUg2gBiSJceTHkygZROUodOomMRyI1HJnLh295+MOre3VnAnwGb7+YgI2vC
+DEc2/blrzRFjio8fUk143GKxaB8G+pfAAKyd/owcpDKK3PYdwOZDIQQRPslmASPz
+An+ruuhRNeKX1uhvDCVFT7RZD28x7SvUeZuUlQ51BbDukKPYIW5hCmIov2mcTvYv
+sP9x4DO+L1Ftk9iDi9uI/SfjpePDwrlv9Gq2i92EHKryj4QOx2E9z+75Jfd+c6A+
+eU9Lr3kwYnG2vcnYSrPO1u5ARsqZ7LCKLVVLOeQB4L5/cwFWNVGfWK1B15beItxb
+PHFzbOqrJQ1eVyp+ulHoI6YHTwQ7IyTdxv7KDxJwm5UoMlZ4Os555+ptc+FQ+fGd
+MUHOgp5a1w8wW7IG4hxDS/7bikyqzA0XRRAaXmPDKkO9pUYSALw+RfZaCFVzJcgj
+/5OWEYXHRu/IE7RjWsGYRnwRydt27UMBMDZmoarjy3Ug0oDBZa3Ds39Q43FmTNMr
+eiEdr3WoBK+1Sb5vgq+AlB0S0n3U1RqsSymJnRDd+TvH+jfUk24=
+=BgbB
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.cms.transformer-0.12.0-javadoc.jar.md5
==============================================================================
--- release/sling/org.apache.sling.cms.transformer-0.12.0-javadoc.jar.md5 (added)
+++ release/sling/org.apache.sling.cms.transformer-0.12.0-javadoc.jar.md5 Mon Jun  3 17:35:04 2019
@@ -0,0 +1 @@
+d07dfaf9aab5613f772bad4c79052545
\ No newline at end of file

Added: release/sling/org.apache.sling.cms.transformer-0.12.0-javadoc.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.cms.transformer-0.12.0-javadoc.jar.sha1 (added)
+++ release/sling/org.apache.sling.cms.transformer-0.12.0-javadoc.jar.sha1 Mon Jun  3 17:35:04 2019
@@ -0,0 +1 @@
+f60935a2b046618c46a5bf656f02059227bc2dc8
\ No newline at end of file

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

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

Added: release/sling/org.apache.sling.cms.transformer-0.12.0-sources.jar.asc
==============================================================================
--- release/sling/org.apache.sling.cms.transformer-0.12.0-sources.jar.asc (added)
+++ release/sling/org.apache.sling.cms.transformer-0.12.0-sources.jar.asc Mon Jun  3 17:35:04 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEENj5pfUadRipAxSVsGFq0kOHJ39cFAlzuxa0ACgkQGFq0kOHJ
+39esABAAjnKAsqRQPG1bWnKWgpO/GW3us2JvBfIWwlsHQ2759BjrOZAonXIGb4u4
+8K1JPVC3nqjb2AriaZmJgm1qCmasu3vwImh1xSoxrjKlOpBk+2jTgPpQm0YGr+dl
+oO8r7tJiC209bwsC0nhjktyLymmNGhqA3fsNtBNvayGcTLPP69HE5XTsyfOlFdtR
+xjgNgsPxb8sDuh1TwsJwWGYR4nJDy32PeMX9ttFSC2lFmrEXVHc7r+7OtE5ICsiq
+0HuGDvj9wo/g8YCys293vAwW8aw2OXtqBfdlDw3sbFkeP0sR1CKfitNQ7dm5DIf5
+E0LgncVhMYZFvuqPjqZxQwDzmJaS4fskaHMrsceaPaZlvqPgBkzKhKpsNT7scpWY
+GQK9yODTX/gtEquAfdhrEntxlbCY2AqGgB86Qo/vYNp4ae6RqJqQwuZJcYZnuZ5S
+Sbb3D+ZIYAhgc7B9ojfCio/zjWauYEmi7I+WAEissbDY6sjy8fT8q1wgqIkjIYar
+Gh0skOh6eNcUIn2Nxnufce2YN7Jnu8As7zc3HFh4hOe8+yg8WCjPcupCXI7bEyhv
+man1bFmo4HTZabtbiBEg2MguI96WrZEuohzWkzI/vjtPMLokfq9O1ImAi7j80R4O
+7pBEOrZ0SrC9baEZFEENYiu6RfP6KBMCirDH1u8jI/vohNBX1kA=
+=DKH3
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.cms.transformer-0.12.0-sources.jar.md5
==============================================================================
--- release/sling/org.apache.sling.cms.transformer-0.12.0-sources.jar.md5 (added)
+++ release/sling/org.apache.sling.cms.transformer-0.12.0-sources.jar.md5 Mon Jun  3 17:35:04 2019
@@ -0,0 +1 @@
+3aa98a8f6776cc02dc067731acc5ca0f
\ No newline at end of file

Added: release/sling/org.apache.sling.cms.transformer-0.12.0-sources.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.cms.transformer-0.12.0-sources.jar.sha1 (added)
+++ release/sling/org.apache.sling.cms.transformer-0.12.0-sources.jar.sha1 Mon Jun  3 17:35:04 2019
@@ -0,0 +1 @@
+020a86c408faa0b67a3a4d542ae46b1d63077be3
\ No newline at end of file

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

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

Added: release/sling/org.apache.sling.cms.transformer-0.12.0.jar.asc
==============================================================================
--- release/sling/org.apache.sling.cms.transformer-0.12.0.jar.asc (added)
+++ release/sling/org.apache.sling.cms.transformer-0.12.0.jar.asc Mon Jun  3 17:35:04 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEENj5pfUadRipAxSVsGFq0kOHJ39cFAlzuxa0ACgkQGFq0kOHJ
+39fVxg//WbU9I7qSmiP/Y85kWlBVEs0+Ur+84fDT3MDbs49wgr0x1k5iVC8u9Xik
+XDP4pT1opeRAYHGhz4GhJvHz6/u6fqpqgUWwSJwTkuMtkJZPPq2ENqVyqjgvzGb0
+RkP8uiAAjJoTZCc5x+I4YWiRDFyurKvzaatLBxGlLqvgiq7YWoskfO190xNYtoG7
+xZPvmRo6Rbhv9LeEEfA0kmgnUWKvwM7SqXKdfnDL8Ugp0gXJ953TQYZ2pBVfF6ug
+VlsaZG2KgCHCS82jUi9nEaa++V0bxmhImVt0ndVrqWvVjqmxKc9hJQkGr/qD+qpM
+hN3iJxMA9dx2f5t9q9OFTVSH44B4vC6rTR9KnTWTST1nOIrVHoRsjsKiVoymxMos
+4i7QIrfE1TlUeJklauZmiGtLT2wNFkcPgGgfVXjIxh0T7cZ8vvAW6n3JKppqZuJv
+tgB823VMKMG05uO5IpFwlE/P1JzguAQxYhIvsAfQOBr/t99dKoz8eeVZgxKIjSGc
+/kP9KAR3HOlzRnvCSYxA6b1MUSnWFXBLsHXE5tQPGVcGEDNKqjhdJBVN3kg+eR/i
+uhLDicNgI+X/TbOMx0iqXWoYSMNJMdBoD/ShMfmDfelCeBaIySc+Hn3k4PHBSOsK
+hxNSo6EeaEi7q4DV9jVvsao829nn3aYm0d4r5ezRyzcP3YM+n48=
+=kGtq
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.cms.transformer-0.12.0.jar.md5
==============================================================================
--- release/sling/org.apache.sling.cms.transformer-0.12.0.jar.md5 (added)
+++ release/sling/org.apache.sling.cms.transformer-0.12.0.jar.md5 Mon Jun  3 17:35:04 2019
@@ -0,0 +1 @@
+cde97adea3c2802dd9d6c108fd778fca
\ No newline at end of file

Added: release/sling/org.apache.sling.cms.transformer-0.12.0.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.cms.transformer-0.12.0.jar.sha1 (added)
+++ release/sling/org.apache.sling.cms.transformer-0.12.0.jar.sha1 Mon Jun  3 17:35:04 2019
@@ -0,0 +1 @@
+a4a5c24c19fb06192827b426cc0d6201fbd82b5b
\ No newline at end of file

Added: release/sling/org.apache.sling.cms.transformer-0.12.0.pom
==============================================================================
--- release/sling/org.apache.sling.cms.transformer-0.12.0.pom (added)
+++ release/sling/org.apache.sling.cms.transformer-0.12.0.pom Mon Jun  3 17:35:04 2019
@@ -0,0 +1,184 @@
+<?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.12.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>
+                    </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>
+        </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>org.osgi.service.component.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>
+            <scope>test</scope>
+        </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.12.0.pom.asc
==============================================================================
--- release/sling/org.apache.sling.cms.transformer-0.12.0.pom.asc (added)
+++ release/sling/org.apache.sling.cms.transformer-0.12.0.pom.asc Mon Jun  3 17:35:04 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEENj5pfUadRipAxSVsGFq0kOHJ39cFAlzuxa0ACgkQGFq0kOHJ
+39e6Qg/+Obt0EeLoJSTpNZccWGIKv116gtmdbZuasSbTPR/IDhcQZgruZX8sn8IG
+RIZtdh9csdkSFVdK0G7ReHM2LicS84o4AqJeWHjr64e/wLasvZjdqN0exsK9+X95
+7fJ06leLpCjc+XJKEbzZCniGKnBMAr40TMI5mi69E5uVTDc1LeEuwMnvZoOSMgH6
+KNFq4G/F8eCTPV+s+lt4wd8mPoQa5z1Pm7t5OOXR7lmIGjo8J7PxP5HjlKhnCgZN
+c9wa0UcbbcUqk2LvOqjkcOpQC5SHMvOfImbmp8thFyblpEHKT9hywzk7EPTUNtGV
+lnueYjn6sisoesRBEMTxfTE/QC2Odm1gh9U4gjEe510umzpltHqCq/WVfjj2oY6Z
+kZbT2OJskbAUVqpzihq/uvdJiN7HwW9S0ECneWLnCRyU82h9+s28/fWcXZMXg/S9
+v3FcMEP4PW6BkXrYKAnjkLVec/4htfqxP+es7QbeE+Zr7/nrELIOD03HprarQsa2
+thhMuhE29PKp6yjZl6JSPnX2xNf9hGRfMF1H0htpsrBBW9MsEs92y6IGRsM9Srvk
+9DtBdAjIy2R0Kd1klKGy2HfPS7WNeDMaWwhf0bTe8fjlQ9Q9yS+QeF+4hKvI1GZz
+RNL8u/U5hIuWtWc/d6zUGkDf5SjMhtU3vRquW550Y7ps5IAjxEs=
+=N2SU
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.cms.transformer-0.12.0.pom.md5
==============================================================================
--- release/sling/org.apache.sling.cms.transformer-0.12.0.pom.md5 (added)
+++ release/sling/org.apache.sling.cms.transformer-0.12.0.pom.md5 Mon Jun  3 17:35:04 2019
@@ -0,0 +1 @@
+e3c51745ab9884c12d462b87b4067112
\ No newline at end of file

Added: release/sling/org.apache.sling.cms.transformer-0.12.0.pom.sha1
==============================================================================
--- release/sling/org.apache.sling.cms.transformer-0.12.0.pom.sha1 (added)
+++ release/sling/org.apache.sling.cms.transformer-0.12.0.pom.sha1 Mon Jun  3 17:35:04 2019
@@ -0,0 +1 @@
+1d900d5e512e1a1104cf6058465017b082abe569
\ No newline at end of file

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

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

Added: release/sling/org.apache.sling.cms.ui-0.12.0-sources.jar.asc
==============================================================================
--- release/sling/org.apache.sling.cms.ui-0.12.0-sources.jar.asc (added)
+++ release/sling/org.apache.sling.cms.ui-0.12.0-sources.jar.asc Mon Jun  3 17:35:04 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEENj5pfUadRipAxSVsGFq0kOHJ39cFAlzuxkEACgkQGFq0kOHJ
+39eCLxAAqMEqgfCjOKqVHqnpvPi9pWyn0f/Dh19bmZmJltzPjH/6Zdsdp2LQzGcF
+6xHqzbezk0N4todYRnZTDBy2usc4/Dkkqz2+k1dET+ZFGUb3bD6uPDezFlwjTv2t
+czSoQ+Tp2RWfk7Qz62onjGSVh8BUuAMtgacyFllmpQYlsUYK5/RsLrjcDuVp8yn0
+PvryLlxF9VuNf0heQucHlDxO1iis6VjJxDDKzXxEYeiHWlnHoX0VxJttwoWBFTfX
+Gxa1ImhlCQsMKsNscQMX6ELrb/SmO+Ob1CH9WZPtIBGR65prkLTU1qcaSI+dY6bZ
+rqKl6pDOxCx2URfOdpb1L7nHKoHgKqpcuKoxsQTEyiJeqr+gIC3v3TJzMkNA2JZk
+X5nwyrCgsAVMW7qwuVus8KtsOslB1Zq/amgyRL0NPtmCNB0Qm1Pp+9areEQ+6fIp
+wzSwwcOS400pDU+ZGULNFnl71+0RuRgCTdRossYcXWbrYNbJMQgjuNh+2I7SuNx9
+iwkS/+9YnKw+qIsy0zsYADIHKt8IsUiZ9mxNN6zPU+B3Yqx5Tn5iUNNyd8ywI3de
+LaCuFIHBioo/6TdmCB5fRxhOBDSYa0hNSI7zW3AWlwupBG48tPzqGqPIgvcAxHHj
+iLl43wuZwQ2/bWNq/0OVQnjgzidALcdYqycQT2JaVlujW8M/8EQ=
+=W+eh
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.cms.ui-0.12.0-sources.jar.md5
==============================================================================
--- release/sling/org.apache.sling.cms.ui-0.12.0-sources.jar.md5 (added)
+++ release/sling/org.apache.sling.cms.ui-0.12.0-sources.jar.md5 Mon Jun  3 17:35:04 2019
@@ -0,0 +1 @@
+ca8db73990656d2777706ebfe5999aba
\ No newline at end of file

Added: release/sling/org.apache.sling.cms.ui-0.12.0-sources.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.cms.ui-0.12.0-sources.jar.sha1 (added)
+++ release/sling/org.apache.sling.cms.ui-0.12.0-sources.jar.sha1 Mon Jun  3 17:35:04 2019
@@ -0,0 +1 @@
+9b0bf3189e592b754352e285463a4d366fc5bec9
\ No newline at end of file

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

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

Added: release/sling/org.apache.sling.cms.ui-0.12.0.jar.asc
==============================================================================
--- release/sling/org.apache.sling.cms.ui-0.12.0.jar.asc (added)
+++ release/sling/org.apache.sling.cms.ui-0.12.0.jar.asc Mon Jun  3 17:35:04 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEENj5pfUadRipAxSVsGFq0kOHJ39cFAlzuxkAACgkQGFq0kOHJ
+39e4hA/+ID8NjpvQlGRdhVbnUh0fTjgLW8H3QGXDbzFhzxGpjG+sMqmpMpcedoIM
+tAPUUHx8qZD+5ZRtx12xyHri/J2EehRa6ijDGWAbpz7IbupnhE5DzI0TqFO31vhy
+ZmZAvA7b2qAlI12amijLtdS0JwI607LRuTzpUOvAbaFoSLb8rZM3XyqAz80HpR1F
+x+zvdBlcgAvAFMADymowthea/haK0vHI9/uEmsCVBsP3Rh7Cp+CHg5NQwupBSRge
+dXE59NBHLmiMrt3b8/N8WTtSTnecYGOknFRd4X1kxDokjfdulcJb3jER9Pl4mwiS
+8q/wns4R+u8K/KHNh4ksFi3Ey4MKVUblfR7lvRbW89DFfIpYe/GGadvp2vE8bQw/
+7+W12N3QEUUUK+u27wYSCdy1vBN5p5OOPTV29i90HXHpk4evzBVhkxwOWXN6pFL9
+kbM2iUjm39tCwdYLHA5VpEoBU2AZJil9OpbCUQrNfCdOu3V/88OBFs5qASDpYO7N
+i+Fn+F56Z2FnyF7SySnK4Xdd24hWnwJ2qqq3DNauTrp7GR2mQWEoO1wdysQDR+pu
+tC4eV40h3i+xuBuk1PuZE47K8EPV/QeelgY/yLvu9Un5iRdnhjqWoEw6S5U67gJy
+UQOSzahgZlCJM5ZVlBhDmHAGADLs1S20EmGledyx0qnYRfLW2JA=
+=8YeK
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.cms.ui-0.12.0.jar.md5
==============================================================================
--- release/sling/org.apache.sling.cms.ui-0.12.0.jar.md5 (added)
+++ release/sling/org.apache.sling.cms.ui-0.12.0.jar.md5 Mon Jun  3 17:35:04 2019
@@ -0,0 +1 @@
+574fc42432dfdbc318e5f8d00f80e1c2
\ No newline at end of file

Added: release/sling/org.apache.sling.cms.ui-0.12.0.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.cms.ui-0.12.0.jar.sha1 (added)
+++ release/sling/org.apache.sling.cms.ui-0.12.0.jar.sha1 Mon Jun  3 17:35:04 2019
@@ -0,0 +1 @@
+3bd7e26bc4cc5e64ed685fc6ea6b7df2c3a72704
\ No newline at end of file

Added: release/sling/org.apache.sling.cms.ui-0.12.0.pom
==============================================================================
--- release/sling/org.apache.sling.cms.ui-0.12.0.pom (added)
+++ release/sling/org.apache.sling.cms.ui-0.12.0.pom Mon Jun  3 17:35:04 2019
@@ -0,0 +1,190 @@
+<?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.12.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>
+                <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>
+                <configuration>
+                    <installDirectory>${frontend.target}</installDirectory>
+                    <workingDirectory>${frontend.target}</workingDirectory>
+                </configuration>
+                <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,
+                            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
+                        </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>
\ No newline at end of file

Added: release/sling/org.apache.sling.cms.ui-0.12.0.pom.asc
==============================================================================
--- release/sling/org.apache.sling.cms.ui-0.12.0.pom.asc (added)
+++ release/sling/org.apache.sling.cms.ui-0.12.0.pom.asc Mon Jun  3 17:35:04 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEENj5pfUadRipAxSVsGFq0kOHJ39cFAlzuxkAACgkQGFq0kOHJ
+39c2VRAAuy3wwYPC6gxEmDXHcj3I8bfusFqDP+rioo5WFDYQ0ekeBt/kKsbdUZyp
+xqJc9MkkpbEL/MOP334ck5BxQOz2TL+POCbEqV244IBZ4Qlp9mcf2F6mZY7VAKxA
+RIqkXvEMu8cP2Pilwa2CjsBswwGHnTpD9S9093DWR90Fdw9gK3+rijH0NWsE4gXR
+gYtpmblKGugae6tcVRNGSqPJDE2n2C+r/NhPqi+yucykoT9fO9qSRGhi/kJYd1Sx
+zhvDGZNF34FJC9y0vAQ17c5MRu6oAfO3237HQHIxZp8xOpAtyuouda4O8BXg2mWi
+cdklXT7XG4aYkIQdnz+fmk5yPIDqvNMjIpRc2CjeF2IzdZGvs3l/wvAYi3o6D1AD
+jnTxz8PmzX4iAcjh431m3g6yxiwu8ri5cX0BBTCDbuCInOgaFd86aVZuTaLHhNp9
+H4PiMrj42+KqXtAMnE54KeJOhTk2fKynP6Pu69h2BV2Yu/QE0mS2yGvlA+32A7nv
+/J9qtfDGRa7lh8kA0xC71tZuBK+Wls97qzpSHeqXHYioVFiwNyvh2RdBPSLhC8Hh
+8zAcdS1XvJd/KZRYPiGXYcqnk6ayt1QZYbUETwrcDF9dkB1dZdFjF4fw9J9IlTUv
+i1pHMXpfvTqVFJYuQPs9BUAmA2SvyuvcA80tpHwy1V6fUav9uTM=
+=qW9t
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.cms.ui-0.12.0.pom.md5
==============================================================================
--- release/sling/org.apache.sling.cms.ui-0.12.0.pom.md5 (added)
+++ release/sling/org.apache.sling.cms.ui-0.12.0.pom.md5 Mon Jun  3 17:35:04 2019
@@ -0,0 +1 @@
+dea5bd856afd404ed956f199de8cc1a3
\ No newline at end of file

Added: release/sling/org.apache.sling.cms.ui-0.12.0.pom.sha1
==============================================================================
--- release/sling/org.apache.sling.cms.ui-0.12.0.pom.sha1 (added)
+++ release/sling/org.apache.sling.cms.ui-0.12.0.pom.sha1 Mon Jun  3 17:35:04 2019
@@ -0,0 +1 @@
+00327e1eaa2b4b1e6ab2c6ea26173ac576cd35b8
\ No newline at end of file