You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ra...@apache.org on 2018/11/05 10:50:35 UTC

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

Added: release/sling/org.apache.sling.scripting.sightly.runtime-1.0.0-1.4.0.pom
==============================================================================
--- release/sling/org.apache.sling.scripting.sightly.runtime-1.0.0-1.4.0.pom (added)
+++ release/sling/org.apache.sling.scripting.sightly.runtime-1.0.0-1.4.0.pom Mon Nov  5 10:50:34 2018
@@ -0,0 +1,199 @@
+<?xml version="1.0"?>
+<!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+  ~ 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>
+    <!-- ======================================================================= -->
+    <!-- P A R E N T   P R O J E C T                                             -->
+    <!-- ======================================================================= -->
+    <parent>
+        <groupId>org.apache.sling</groupId>
+        <artifactId>sling</artifactId>
+        <version>34</version>
+        <relativePath />
+    </parent>
+
+    <!-- ======================================================================= -->
+    <!-- P R O J E C T                                                           -->
+    <!-- ======================================================================= -->
+    <artifactId>org.apache.sling.scripting.sightly.runtime</artifactId>
+    <!--
+        The versioning scheme defined here corresponds to SLING-7406 (<module_version>-<htl_specification_version>). Take care when
+        releasing to only increase the first part, unless the module provides support for a newer version of the HTL specification.
+    -->
+    <version>1.0.0-1.4.0</version>
+    <packaging>bundle</packaging>
+
+    <name>Apache Sling Scripting HTL Runtime</name>
+
+    <description>
+        The Apache Sling Scripting HTL Runtime provides support for executing HTL Java compiled units produced by the org.apache.sling.scripting.sightly.compiler.java module.
+    </description>
+
+    <scm>
+        <connection>scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-scripting-sightly-runtime.git</connection>
+        <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-scripting-sightly-runtime.git</developerConnection>
+        <url>https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-scripting-sightly-runtime.git</url>
+      <tag>org.apache.sling.scripting.sightly.runtime-1.0.0-1.4.0</tag>
+  </scm>
+
+    <properties>
+        <jacoco.maven.plugin.version>0.7.9</jacoco.maven.plugin.version>
+        <sling.java.version>8</sling.java.version>
+    </properties>
+
+    <!-- ======================================================================= -->
+    <!-- B U I L D                                                               -->
+    <!-- ======================================================================= -->
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-bundle-plugin</artifactId>
+                <extensions>true</extensions>
+                <executions>
+                    <execution>
+                        <id>scr-metadata</id>
+                        <goals>
+                            <goal>manifest</goal>
+                        </goals>
+                    </execution>
+                </executions>
+                <configuration>
+                    <exportScr>true</exportScr>
+                    <instructions>
+                        <Provide-Capability>
+                            io.sightly.runtime; version:Version=1.0,
+                            io.sightly.runtime; version:Version=1.1,
+                            io.sightly.runtime; version:Version=1.2,
+                            io.sightly.runtime; version:Version=1.3,
+                            io.sightly.runtime; version:Version=1.3.1,
+                            io.sightly.runtime; version:Version=1.4
+                        </Provide-Capability>
+                    </instructions>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>findbugs-maven-plugin</artifactId>
+                <version>3.0.3</version>
+                <configuration>
+                    <effort>Max</effort>
+                    <xmlOutput>true</xmlOutput>
+                </configuration>
+                <executions>
+                    <execution>
+                        <id>find-bugs</id>
+                        <phase>process-classes</phase>
+                        <goals>
+                            <goal>check</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-javadoc-plugin</artifactId>
+                <configuration>
+                    <!-- No javadocs -->
+                    <excludePackageNames>
+                        org.apache.sling.scripting.sightly.java.compiler.impl
+                    </excludePackageNames>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
+    <profiles>
+        <profile>
+            <id>coverage-report</id>
+            <activation>
+                <activeByDefault>false</activeByDefault>
+            </activation>
+            <build>
+                <plugins>
+                    <plugin>
+                        <groupId>org.jacoco</groupId>
+                        <artifactId>jacoco-maven-plugin</artifactId>
+                        <version>${jacoco.maven.plugin.version}</version>
+                        <executions>
+                            <execution>
+                                <id>default-prepare-agent</id>
+                                <goals>
+                                    <goal>prepare-agent</goal>
+                                </goals>
+                            </execution>
+                            <execution>
+                                <id>default-report</id>
+                                <goals>
+                                    <goal>report</goal>
+                                </goals>
+                                <configuration>
+                                    <includes>
+                                        <include>org/apache/sling/scripting/sightly/**/*</include>
+                                    </includes>
+                                </configuration>
+                            </execution>
+                        </executions>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
+    </profiles>
+
+    <!-- ======================================================================= -->
+    <!-- D E P E N D E N C I E S                                                 -->
+    <!-- ======================================================================= -->
+    <dependencies>
+
+        <!-- OSGi -->
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.annotation.versioning</artifactId>
+            <scope>provided</scope>
+        </dependency>
+
+        <!-- Logging -->
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-api</artifactId>
+            <scope>provided</scope>
+        </dependency>
+
+        <!-- Apache Commons -->
+        <dependency>
+            <groupId>org.apache.commons</groupId>
+            <artifactId>commons-lang3</artifactId>
+            <version>3.5</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>commons-io</groupId>
+            <artifactId>commons-io</artifactId>
+            <version>2.5</version>
+            <scope>provided</scope>
+        </dependency>
+
+        <!-- testing -->
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
+
+</project>

Added: release/sling/org.apache.sling.scripting.sightly.runtime-1.0.0-1.4.0.pom.asc
==============================================================================
--- release/sling/org.apache.sling.scripting.sightly.runtime-1.0.0-1.4.0.pom.asc (added)
+++ release/sling/org.apache.sling.scripting.sightly.runtime-1.0.0-1.4.0.pom.asc Mon Nov  5 10:50:34 2018
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEcT4CQ0LcQDURXubcnd0BNZZEeNMFAlvZ2hMACgkQnd0BNZZE
+eNPyRxAAklpqKeA0VjXNFhMGBevBku88PuJYuyLSath78WaSgLx5Y4tp8hF6pTAY
+Af5HsD0blUaJqc1Z055WiGaoffUMjd0218Mq0kc/wTWxFvmwxjl6/x4E0p1QuXqE
+tJpEc49P3+vdnPACAkrKC7bXqAZ07BDoeU+64Dl+LUKGQUiWejDkqZpRnSKv839I
+G1n/IcuOhyt+fDEK52q+KaxaozqpcDvF203ZEyeCfVLwUcUyXV4rik33WypBCi+P
+PGVIZYCSAMYcycl9u1A0G88QBtDd9TX6laR6HwiVydp2/Nt0DMvjmAkgdqwrd3CL
+1ShDbq5nRLB+z3uaPShuM+tfVhiU+OgYdhoUjWz+6rtKmw4GE+rT3vZVKCq52PPF
+8Rm3EsriHjY05Wq7HmS45SlgjuBmmuD47a6u2mkFGqSmzg/NIsJ1jd5WIZTy8vlD
+7oNG0Yw238jXJT2Qzwa6CC9/z2w8BybXTooOhR6befXYHeaUpo3zFGK0LdMdVpIC
+ahKcEAYPypzBguP/T5nS70cQl9pkFyPsvY4bNSUJb6QmRGx+JU9tX86tQr7pPoZ5
+OCXtD03NVXXA/jygM1bvN9zHgevvlBjIaKWCaVLIzVm1k83a6JOpPzKs8znrdft3
+WI+iGUoNgw/oQXhMz+uiZyqt15uoCDFJq+sdvgnEHIasnNex6NE=
+=eSGW
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.scripting.sightly.runtime-1.0.0-1.4.0.pom.md5
==============================================================================
--- release/sling/org.apache.sling.scripting.sightly.runtime-1.0.0-1.4.0.pom.md5 (added)
+++ release/sling/org.apache.sling.scripting.sightly.runtime-1.0.0-1.4.0.pom.md5 Mon Nov  5 10:50:34 2018
@@ -0,0 +1 @@
+8d9e8346ec6e890ecf8912d1d64d43c6
\ No newline at end of file

Added: release/sling/org.apache.sling.scripting.sightly.runtime-1.0.0-1.4.0.pom.sha1
==============================================================================
--- release/sling/org.apache.sling.scripting.sightly.runtime-1.0.0-1.4.0.pom.sha1 (added)
+++ release/sling/org.apache.sling.scripting.sightly.runtime-1.0.0-1.4.0.pom.sha1 Mon Nov  5 10:50:34 2018
@@ -0,0 +1 @@
+a8730ad95d77f58e98a4e59450afc03202455249
\ No newline at end of file

Added: release/sling/org.apache.sling.scripting.sightly.testing-1.0.14-1.4.0-slingfeature.txt
==============================================================================
--- release/sling/org.apache.sling.scripting.sightly.testing-1.0.14-1.4.0-slingfeature.txt (added)
+++ release/sling/org.apache.sling.scripting.sightly.testing-1.0.14-1.4.0-slingfeature.txt Mon Nov  5 10:50:34 2018
@@ -0,0 +1,47 @@
+# 
+# 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.
+[feature name=sling]
+
+# Dependencies
+# Dependencies
+[artifacts]
+  org.antlr/antlr4-runtime/4.7.1
+  org.apache.sling/org.apache.sling.scripting.sightly.compiler.java/1.1.0-1.4.0
+  org.apache.sling/org.apache.sling.scripting.sightly.compiler/1.1.0-1.4.0
+  org.apache.sling/org.apache.sling.scripting.sightly.js.provider/1.0.28
+  org.apache.sling/org.apache.sling.scripting.sightly.models.provider/1.0.8
+  org.apache.sling/org.apache.sling.scripting.sightly.runtime/1.0.0-1.4.0
+  org.apache.sling/org.apache.sling.scripting.sightly.testing-content/1.0.12-1.4.0
+  org.apache.sling/org.apache.sling.scripting.sightly/1.1.0-1.4.0
+  org.apache.sling/org.apache.sling.starter/11/slingstart
+
+[configurations]
+  org.apache.sling.jcr.resource.internal.JcrResourceResolverFactoryImpl
+    resource.resolver.searchpath=["/apps", "/libs", "/sightlytck/scripts"]
+
+  org.apache.sling.commons.log.LogManager.factory.config-2ef75700-a318-4eae-bed4-86777e1bdfd2
+    org.apache.sling.commons.log.pattern="{0,date,dd.MM.yyyy\ HH:mm:ss.SSS}\ *{4}*\ [{2}]\ {3}\ {5}"
+    org.apache.sling.commons.log.names=["org.apache.sling.scripting.sightly.js.impl.jsapi.ProxyAsyncScriptableFactory"]
+    org.apache.sling.commons.log.file="logs/error.log"
+    org.apache.sling.commons.log.level="error"
+
+  [:repoinit]
+create path (sling:Folder) /sightlytck/scripts
+set ACL for sling-scripting
+allow   jcr:read    on /sightlytck/scripts
+end

Added: release/sling/org.apache.sling.scripting.sightly.testing-1.0.14-1.4.0-slingfeature.txt.asc
==============================================================================
--- release/sling/org.apache.sling.scripting.sightly.testing-1.0.14-1.4.0-slingfeature.txt.asc (added)
+++ release/sling/org.apache.sling.scripting.sightly.testing-1.0.14-1.4.0-slingfeature.txt.asc Mon Nov  5 10:50:34 2018
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEcT4CQ0LcQDURXubcnd0BNZZEeNMFAlvZ5AAACgkQnd0BNZZE
+eNMTAw//XNIIGwwSbDaZnOWzouOZeVFPWcBG55ISrZxJzzP2GnmTEEFrSJkxJOwi
+ZP8qBV+vfHC7fPGUvYqcuxmzpFk7SLg12fUwE1lBTct78loPz1hpYg4E54I6ly0j
++jvH7l7m5B4fx7VmUNS4JsDtn2vpsMC4/mCccS3AFlGxLXbrwlXwGXGUXNPrnrZP
+tm2rxTxf7U05k8Xtov5KbEpdDIJxqBaZF+rvclzm5ZLLvb2KJMV+GEnhE0AKCYXE
+muu2Bq5K3CggZ1WJyWi1m2ufA1RBZIdnwUQ7DqTKrRyfeGytVcYGllgaSBG2v7fQ
+1DMaL/xVHylss5kwbgQ7nRYeEjW4OBVSCgktMUIIs4v1p7wQNy34sUMR7fV2e8t/
+2LCROqmcyPB6ujhrrHW+5irF5ATbMM3ZqMuV15MHRH9sv9Ryhp2qIOlda9x/1mHQ
+xKQTAfS02iZSULNa/OoupP+rsbuqkM0oz93Q4Aa2ud9Kf38z6TFRgshpk9ICKa2c
+R3TDqbf6Zh4I5vgueWHKq5/jp69EIhFIXEQEe4DXP0TXIxT2W9jKwUulHPTnvfRY
+6Sp18V4H2zZL7yRS3Qmyafkf+7U1o5RA/aov9Fbnv0rwc3EljzodTFXEjh1fgykJ
+uqt1hBx8Qwu/dWrSrvoGhfbe5FpQsbtF27q1Hgxr74W0baDdhxA=
+=w+/j
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.scripting.sightly.testing-1.0.14-1.4.0-slingfeature.txt.md5
==============================================================================
--- release/sling/org.apache.sling.scripting.sightly.testing-1.0.14-1.4.0-slingfeature.txt.md5 (added)
+++ release/sling/org.apache.sling.scripting.sightly.testing-1.0.14-1.4.0-slingfeature.txt.md5 Mon Nov  5 10:50:34 2018
@@ -0,0 +1 @@
+c6dc73b89bc07100d4a729a04b0b80c2
\ No newline at end of file

Added: release/sling/org.apache.sling.scripting.sightly.testing-1.0.14-1.4.0-slingfeature.txt.sha1
==============================================================================
--- release/sling/org.apache.sling.scripting.sightly.testing-1.0.14-1.4.0-slingfeature.txt.sha1 (added)
+++ release/sling/org.apache.sling.scripting.sightly.testing-1.0.14-1.4.0-slingfeature.txt.sha1 Mon Nov  5 10:50:34 2018
@@ -0,0 +1 @@
+f240ea1007303afd705ad78103024240feac4085
\ No newline at end of file

Added: release/sling/org.apache.sling.scripting.sightly.testing-1.0.14-1.4.0-source-release.zip
==============================================================================
Binary file - no diff available.

Propchange: release/sling/org.apache.sling.scripting.sightly.testing-1.0.14-1.4.0-source-release.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/sling/org.apache.sling.scripting.sightly.testing-1.0.14-1.4.0-source-release.zip.asc
==============================================================================
--- release/sling/org.apache.sling.scripting.sightly.testing-1.0.14-1.4.0-source-release.zip.asc (added)
+++ release/sling/org.apache.sling.scripting.sightly.testing-1.0.14-1.4.0-source-release.zip.asc Mon Nov  5 10:50:34 2018
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEcT4CQ0LcQDURXubcnd0BNZZEeNMFAlvZ5AEACgkQnd0BNZZE
+eNNyzg//Wph5DA8XXPegQeLS5UVGwDKpRgGjqep2HHxp9S3EknLv7498Vhnnv+ko
+/smOWQY0sQXaKvp+FMfZ3FOOuWrPKJ8iYCqR+fHhEe+saXPCnZXM35eZNiZ8FEk9
+/vV+Vozn9t/pRul9lZYo1YAxvYlsujQowsn5voZ2ItUelYVFGU0da44XxAB4mMZG
+bcYFxVn39Gmu0RHe1uaqOJ6ZK8PGMDq4BwknYDEAMoAlZrj714VXMY+i2uOJoXU7
+1w5eCneDuXre2sER9umRhlkxgXdQ3sNnaN16BO9xzB4oCQSxRjmy26ERgd7/QNTh
+GWrr21SuFzDY+aqsOq6xAdADwKE7VoXX4RtLJRhrkI3gpvwTob+hFvY1qmK8VB/F
+Rtq86alqkYpF3RdaLjOs6MT45WtQs8x4wCc4kvc+zll8+0bAfvQ+Q79ppfo+TPwh
+gWvZ1HEsn18BkAsTthuHzq/miuPAVnniteQ+P2uJ0+GZcFCOLMaikBgc6rhCRSH7
+wH76sGKHVlGA3Pg7Kd9FC6rGeC0oSATDfClziMoBzstZ76wk9faBnQaybt0EefKE
+0iE6SLaNL04VUJs7HHQ5YOu9oCiWpn0AwKrvvaye9i1EHz+h8hzxvUux2dwmBpfG
+XJDv5+XWwN0GmoOCkEgyYU8jwynY44HuH05BFau/vDoZYprLdJ8=
+=8DuQ
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.scripting.sightly.testing-1.0.14-1.4.0-source-release.zip.md5
==============================================================================
--- release/sling/org.apache.sling.scripting.sightly.testing-1.0.14-1.4.0-source-release.zip.md5 (added)
+++ release/sling/org.apache.sling.scripting.sightly.testing-1.0.14-1.4.0-source-release.zip.md5 Mon Nov  5 10:50:34 2018
@@ -0,0 +1 @@
+bec5ab8b4ae6fff1c0f67cc18e5339f1
\ No newline at end of file

Added: release/sling/org.apache.sling.scripting.sightly.testing-1.0.14-1.4.0-source-release.zip.sha1
==============================================================================
--- release/sling/org.apache.sling.scripting.sightly.testing-1.0.14-1.4.0-source-release.zip.sha1 (added)
+++ release/sling/org.apache.sling.scripting.sightly.testing-1.0.14-1.4.0-source-release.zip.sha1 Mon Nov  5 10:50:34 2018
@@ -0,0 +1 @@
+d9586f59dd32402ef782f106d54d8bb769f641c5
\ No newline at end of file

Added: release/sling/org.apache.sling.scripting.sightly.testing-1.0.14-1.4.0-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: release/sling/org.apache.sling.scripting.sightly.testing-1.0.14-1.4.0-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/sling/org.apache.sling.scripting.sightly.testing-1.0.14-1.4.0-sources.jar.asc
==============================================================================
--- release/sling/org.apache.sling.scripting.sightly.testing-1.0.14-1.4.0-sources.jar.asc (added)
+++ release/sling/org.apache.sling.scripting.sightly.testing-1.0.14-1.4.0-sources.jar.asc Mon Nov  5 10:50:34 2018
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEcT4CQ0LcQDURXubcnd0BNZZEeNMFAlvZ5AEACgkQnd0BNZZE
+eNMqPQ//Z9M+HjefmalcwNdMi3hWVs1tLM55PVUnPkrfKGEmK2iZURnSjAAk07jG
+bBFxgOujM4iE3tpIdNA8iODd6wSOnEZWIJggjeRWLd78ZMEd/jZ9AYnbAJbFAfCN
+yOpjK+0OWCG7aCAF1vBebS0crh6+c0nVo6XZdnoYkjQZmYetJh2Kts5sNGVei1KV
+3GNzKhwxEi0+oprtsuiunoYdL/pDy17xDl1GNap60m4y/U7KOn1Vx0YuPu1QTY2u
+ALdz8aIn8ugB+SgqYzF70mHrGuXru3Dwl/Oy9pIPiRbAP5STnOdosrnhuEHo3E47
+DVHsRMPplEQ1Oef0ebTWReBxSg6DzMp3nsO8wdrH8DURcroZXpJ7eVtCwuMQOBdD
+5PfwpyZBh5RUn7VQKURctAgPKp2zSCBwzdDH5tDVMSSzr/27Wg8tkcYfXqdE0rCy
+HV5N7WNfwnVrmZ/CGQqmfnRfGvoj1gP/abcnyDvt5KsJFUTmeia7LjvpwfYKiShD
+wNfJtm4HIFYQ2fguP7I2O1HFtzWQMdO0avHB/1oENKrSQ07vgIfaUKx8mGLPovTe
+SwbK/5cti3lxZVCoO26fRSGkxrBCUHyzW0etKmIzyt3W/XKVioxC4ww2iWH8008E
+w6iG39nLycrsd1xeC8ZcTFycPdNB9ujbobSaAhfBumxQIGgVcOU=
+=LM6p
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.scripting.sightly.testing-1.0.14-1.4.0-sources.jar.md5
==============================================================================
--- release/sling/org.apache.sling.scripting.sightly.testing-1.0.14-1.4.0-sources.jar.md5 (added)
+++ release/sling/org.apache.sling.scripting.sightly.testing-1.0.14-1.4.0-sources.jar.md5 Mon Nov  5 10:50:34 2018
@@ -0,0 +1 @@
+f307eb7baf164279cecb2522bf5f08a0
\ No newline at end of file

Added: release/sling/org.apache.sling.scripting.sightly.testing-1.0.14-1.4.0-sources.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.scripting.sightly.testing-1.0.14-1.4.0-sources.jar.sha1 (added)
+++ release/sling/org.apache.sling.scripting.sightly.testing-1.0.14-1.4.0-sources.jar.sha1 Mon Nov  5 10:50:34 2018
@@ -0,0 +1 @@
+e8450d8df2970de28e9c867913a077cf98650368
\ No newline at end of file

Added: release/sling/org.apache.sling.scripting.sightly.testing-1.0.14-1.4.0.jar
==============================================================================
Binary file - no diff available.

Propchange: release/sling/org.apache.sling.scripting.sightly.testing-1.0.14-1.4.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/sling/org.apache.sling.scripting.sightly.testing-1.0.14-1.4.0.jar.asc
==============================================================================
--- release/sling/org.apache.sling.scripting.sightly.testing-1.0.14-1.4.0.jar.asc (added)
+++ release/sling/org.apache.sling.scripting.sightly.testing-1.0.14-1.4.0.jar.asc Mon Nov  5 10:50:34 2018
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEcT4CQ0LcQDURXubcnd0BNZZEeNMFAlvZ5AAACgkQnd0BNZZE
+eNNMGQ//cleLeeXdwj0+IxA7G6xalaXsGBpD6FkCidvRbDWFnTOHFVsUVDoqONB4
+aunDPW0wM56qCnt0cJE/Tdgp+oOcVAk++V23wbAT7eLWSXyGWZYH5XubCqD8i5KS
+3Po74mMzlkMerCDYmLjEpvodKqTcatgItvL2gh5M38LTJll2cwZf4DXP1lp+55KN
+PeB/+d9jvNjEuy5n0k2R7UC41M3I9LlRv8xO6ro42X4VxJtKcN/P3Xi9r/ozzCaP
+Q8idjT90LP3gtbYFfwIo1cV2phSD1pW87/ppDJsrMkVotEprbNLZA1BfzVD/bX2t
+s/fkjv6ASpweimYZHAk2pYuobfesu9/nHYzVZOkDARTFFSy22UUZEFEm48kM4tZc
+Z/pnOT4J/3LTbvq9FUiniOJeaJyOWdW6w7J+rEWBHBYFEZsBeqCy/IrIPzlgjq/G
+u5pndsOMfKeSFjHf4mTjsbo81C+INfFByMAiZqLFW2WcRcZym6Cv409c+JZJ8Jeg
+n0n9S4elEojKhbV35qj531+4XjpakquVNB2JgZo1ylxGQGKkx7+3skV+Tl8LC27w
+vkj0p7uEIZePFdf7vbcrFmMPa1mE94dkqS+YSF3fL55NuP5Uwt9ln+jIXxyTHmki
+fHYtQMjug+ET6XGa4zZ1kyDW8/dZldZAUsIC8wMagoauWtUSqRE=
+=9+kJ
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.scripting.sightly.testing-1.0.14-1.4.0.jar.md5
==============================================================================
--- release/sling/org.apache.sling.scripting.sightly.testing-1.0.14-1.4.0.jar.md5 (added)
+++ release/sling/org.apache.sling.scripting.sightly.testing-1.0.14-1.4.0.jar.md5 Mon Nov  5 10:50:34 2018
@@ -0,0 +1 @@
+6233aed5451d051d4babc12811a81ae2
\ No newline at end of file

Added: release/sling/org.apache.sling.scripting.sightly.testing-1.0.14-1.4.0.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.scripting.sightly.testing-1.0.14-1.4.0.jar.sha1 (added)
+++ release/sling/org.apache.sling.scripting.sightly.testing-1.0.14-1.4.0.jar.sha1 Mon Nov  5 10:50:34 2018
@@ -0,0 +1 @@
+509ecebb8f6b344311382cf200a6b4f8dbd1884a
\ No newline at end of file

Added: release/sling/org.apache.sling.scripting.sightly.testing-1.0.14-1.4.0.pom
==============================================================================
--- release/sling/org.apache.sling.scripting.sightly.testing-1.0.14-1.4.0.pom (added)
+++ release/sling/org.apache.sling.scripting.sightly.testing-1.0.14-1.4.0.pom Mon Nov  5 10:50:34 2018
@@ -0,0 +1,561 @@
+<?xml version="1.0"?>
+<!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+  ~ Licensed to the Apache Software Foundation (ASF) under one
+  ~ or more contributor license agreements.  See the NOTICE file
+  ~ distributed with this work for additional information
+  ~ regarding copyright ownership.  The ASF licenses this file
+  ~ to you under the Apache License, Version 2.0 (the
+  ~ "License"); you may not use this file except in compliance
+  ~ with the License.  You may obtain a copy of the License at
+  ~
+  ~   http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing,
+  ~ software distributed under the License is distributed on an
+  ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  ~ KIND, either express or implied.  See the License for the
+  ~ specific language governing permissions and limitations
+  ~ under the License.
+  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~-->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.apache.sling</groupId>
+        <artifactId>sling</artifactId>
+        <version>34</version>
+        <relativePath />
+    </parent>
+
+    <artifactId>org.apache.sling.scripting.sightly.testing</artifactId>
+    <packaging>slingstart</packaging>
+    <!--
+        The versioning scheme defined here corresponds to SLING-7406 (<module_version>-<htl_specification_version>). Take care when
+        releasing to only increase the first part, unless the module provides support for a newer version of the HTL specification.
+    -->
+    <version>1.0.14-1.4.0</version>
+
+    <name>Apache Sling Scripting HTL Integration Tests</name>
+    <description>This project runs the integration tests for validating the Apache Sling Scripting HTL implementation
+        against the Adobe HTL TCK.
+    </description>
+
+    <scm>
+        <connection>scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-scripting-sightly-testing.git</connection>
+        <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-scripting-sightly-testing.git</developerConnection>
+        <url>https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-scripting-sightly-testing.git</url>
+      <tag>org.apache.sling.scripting.sightly.testing-1.0.14-1.4.0</tag>
+  </scm>
+
+    <properties>
+        <sling.java.version>8</sling.java.version>
+        <!-- run modes for integration tests -->
+        <sling.run.modes>oak_tar</sling.run.modes>
+
+        <!-- path suffix for HTTP access to Sling -->
+        <http.base.path />
+
+        <!-- hostname for integration tests -->
+        <test.host>localhost</test.host>
+
+        <!-- optionally exclude some integration tests  -->
+        <failsafe.exclude />
+
+        <!--
+            Set this to true to stop mvn once the integration test Jetty instance is
+            started. Useful to manually test the integration testing webapp.
+        -->
+        <integration.test.wait>false</integration.test.wait>
+
+        <!--
+        if set to "true" this will start the launchpad with the following debug options:
+            -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=8000
+
+        otherwise you can provide your own debug settings
+        -->
+        <debug.options />
+
+        <jacoco.maven.plugin.version>0.7.9</jacoco.maven.plugin.version>
+        <!-- HTL modules under test versions -->
+        <org.apache.sling.scripting.sightly.runtime.version>1.0.0-1.4.0-SNAPSHOT</org.apache.sling.scripting.sightly.runtime.version>
+        <org.apache.sling.scripting.sightly.compiler.version>1.1.0-1.4.0-SNAPSHOT</org.apache.sling.scripting.sightly.compiler.version>
+        <org.apache.sling.scripting.sightly.compiler.java.version>1.1.0-1.4.0-SNAPSHOT</org.apache.sling.scripting.sightly.compiler.java.version>
+        <org.apache.sling.scripting.sightly.version>1.1.0-1.4.0-SNAPSHOT</org.apache.sling.scripting.sightly.version>
+        <org.apache.sling.scripting.sightly.js.provider.version>1.0.27-SNAPSHOT</org.apache.sling.scripting.sightly.js.provider.version>
+        <org.apache.sling.scripting.sightly.models.provider.version>1.0.7-SNAPSHOT</org.apache.sling.scripting.sightly.models.provider.version>
+        <org.apache.sling.scripting.sightly.testing.content.version>1.0.11-1.4.0-SNAPSHOT</org.apache.sling.scripting.sightly.testing.content.version>
+    </properties>
+
+    <build>
+        <pluginManagement>
+            <plugins>
+                <plugin>
+                    <groupId>org.apache.sling</groupId>
+                    <artifactId>slingstart-maven-plugin</artifactId>
+                    <version>1.7.16</version>
+                    <extensions>true</extensions>
+                    <executions>
+                        <execution>
+                            <id>start-container</id>
+                            <goals>
+                                <goal>start</goal>
+                                <goal>stop</goal>
+                            </goals>
+                        </execution>
+                    </executions>
+                    <configuration>
+                        <usePomDependencies>true</usePomDependencies>
+                        <servers>
+                            <server>
+                                <port>${http.port}</port>
+                                <controlPort>${sling.control.port}</controlPort>
+                                <runmode>${sling.run.modes}</runmode>
+                                <contextPath>${http.base.path}</contextPath>
+                                <debug>${debug.options}</debug>
+                            </server>
+                        </servers>
+                    </configuration>
+                </plugin>
+            </plugins>
+        </pluginManagement>
+
+
+        <plugins>
+            <plugin>
+                <artifactId>maven-clean-plugin</artifactId>
+                <configuration>
+                    <filesets>
+                        <fileset>
+                            <directory>${basedir}</directory>
+                            <includes>
+                                <include>derby.log</include>
+                            </includes>
+                        </fileset>
+                    </filesets>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>build-helper-maven-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <id>reserve-network-port</id>
+                        <goals>
+                            <goal>reserve-network-port</goal>
+                        </goals>
+                        <phase>process-resources</phase>
+                        <configuration>
+                            <portNames>
+                                <portName>http.port</portName>
+                                <portName>sling.control.port</portName>
+                            </portNames>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-failsafe-plugin</artifactId>
+                <version>2.19.1</version>
+                <executions>
+                    <execution>
+                        <id>integration-tests</id>
+                        <goals>
+                            <goal>integration-test</goal>
+                            <goal>verify</goal>
+                        </goals>
+                    </execution>
+                </executions>
+                <configuration>
+                    <includes>
+                        <include>%regex[.*LaunchpadReadyIT.*]</include>
+                        <include>%regex[.*SlingSpecificsSightlyIT.*]</include>
+                        <include>%regex[.*TestsRunner.*]</include>
+                        <include>%regex[.*PerformanceIT.*]</include>
+                    </includes>
+                    <dependenciesToScan>
+                        <dependency>io.sightly:io.sightly.tck</dependency>
+                    </dependenciesToScan>
+                    <runOrder>alphabetical</runOrder>
+                    <excludes>
+                        <exclude>${failsafe.exclude}</exclude>
+                    </excludes>
+                    <systemPropertyVariables>
+                        <io.sightly.tck.serverURL>http://${test.host}:${http.port}</io.sightly.tck.serverURL>
+                        <io.sightly.tck.user>admin</io.sightly.tck.user>
+                        <io.sightly.tck.pass>admin</io.sightly.tck.pass>
+                        <launchpad.http.server.url>http://${test.host}:${http.port}/</launchpad.http.server.url>
+                        <launchpad.servlet.context>${http.base.path}</launchpad.servlet.context>
+                    </systemPropertyVariables>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-release-plugin</artifactId>
+                <configuration>
+                    <releaseProfiles>release</releaseProfiles>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
+
+
+    <profiles>
+        <profile>
+            <id>snapshot-launchpad</id>
+            <activation>
+                <activeByDefault>true</activeByDefault>
+            </activation>
+            <build>
+                <plugins>
+                    <plugin>
+                        <groupId>org.apache.sling</groupId>
+                        <artifactId>slingstart-maven-plugin</artifactId>
+                        <configuration>
+                            <model>
+                                [feature name=sling]
+                                # Dependencies
+                                [artifacts]
+                                org.apache.sling/org.apache.sling.starter/12-SNAPSHOT/slingstart
+                            </model>
+                        </configuration>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
+        <profile>
+            <id>release</id>
+            <activation>
+                <activeByDefault>false</activeByDefault>
+            </activation>
+            <build>
+                <plugins>
+                    <plugin>
+                        <groupId>org.apache.sling</groupId>
+                        <artifactId>slingstart-maven-plugin</artifactId>
+                        <configuration>
+                            <model>
+                                [feature name=sling]
+                                # Dependencies
+                                [artifacts]
+                                org.apache.sling/org.apache.sling.starter/11/slingstart
+                            </model>
+                        </configuration>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
+        <profile>
+            <!--
+                This profile allows running code coverage reports for the integration tests. In addition, if the other modules have been
+                built from the reactor, their jacoco reports will be merged to produce a report containing coverage information about
+                both unit and integration tests.
+
+                By default the latest snapshots will be used for generating the report. If, however, you want to run the report on
+                released versions then this can be achieved with the following command:
+
+                mvn clean verify -Pcoverage-report \
+                    -Dorg.apache.sling.scripting.sightly.compiler.version=1.0.2 \
+                    -Dorg.apache.sling.scripting.sightly.compiler.java.version=1.0.4 \
+                    -Dorg.apache.sling.scripting.sightly.version=1.0.26 \
+                    -Dorg.apache.sling.scripting.sightly.js.provider.version=1.0.16 \
+                    -Dorg.apache.sling.scripting.sightly.models.provider.version=1.0.4
+
+            -->
+            <id>coverage-report</id>
+            <activation>
+                <activeByDefault>false</activeByDefault>
+            </activation>
+            <properties>
+                <failsafe.exclude>%regex[.*PerformanceIT.*]</failsafe.exclude>
+            </properties>
+            <build>
+                <plugins>
+                    <plugin>
+                        <groupId>org.codehaus.mojo</groupId>
+                        <artifactId>build-helper-maven-plugin</artifactId>
+                        <executions>
+                            <execution>
+                                <phase>generate-sources</phase>
+                                <goals>
+                                    <goal>add-source</goal>
+                                </goals>
+                                <configuration>
+                                    <sources>
+                                        <source>${project.build.directory}/generated-sources</source>
+                                    </sources>
+                                </configuration>
+                            </execution>
+                        </executions>
+                    </plugin>
+                    <plugin>
+                        <groupId>org.apache.maven.plugins</groupId>
+                        <artifactId>maven-dependency-plugin</artifactId>
+                        <version>2.10</version>
+                        <configuration>
+                            <includeArtifactIds>
+                                org.apache.sling.scripting.sightly.compiler,
+                                org.apache.sling.scripting.sightly.compiler.java,
+                                org.apache.sling.scripting.sightly,
+                                org.apache.sling.scripting.sightly.js.provider,
+                                org.apache.sling.scripting.sightly.models.provider
+                            </includeArtifactIds>
+                            <transitive>false</transitive>
+                        </configuration>
+                        <executions>
+                            <execution>
+                                <id>copy-sources</id>
+                                <phase>generate-resources</phase>
+                                <goals>
+                                    <goal>unpack-dependencies</goal>
+                                </goals>
+                                <configuration>
+                                    <classifier>sources</classifier>
+                                    <failOnMissingClassifierArtifact>true</failOnMissingClassifierArtifact>
+                                    <outputDirectory>${project.build.directory}/generated-sources</outputDirectory>
+                                </configuration>
+                            </execution>
+                        </executions>
+                    </plugin>
+                    <plugin>
+                        <artifactId>maven-resources-plugin</artifactId>
+                        <version>3.0.1</version>
+                        <executions>
+                            <execution>
+                                <id>copy-resources</id>
+                                <phase>validate</phase>
+                                <goals>
+                                    <goal>copy-resources</goal>
+                                </goals>
+                                <configuration>
+                                    <outputDirectory>${basedir}/target/</outputDirectory>
+                                    <resources>
+                                        <resource>
+                                            <directory>../compiler/target/</directory>
+                                            <includes>
+                                                <include>jacoco.exec</include>
+                                            </includes>
+                                            <targetPath>compiler-jacoco</targetPath>
+                                        </resource>
+                                        <resource>
+                                            <directory>../java-compiler/target/</directory>
+                                            <includes>
+                                                <include>jacoco.exec</include>
+                                            </includes>
+                                            <targetPath>java-compiler-jacoco</targetPath>
+                                        </resource>
+                                        <resource>
+                                            <directory>../engine/target/</directory>
+                                            <includes>
+                                                <include>jacoco.exec</include>
+                                            </includes>
+                                            <targetPath>engine-jacoco</targetPath>
+                                        </resource>
+                                    </resources>
+                                </configuration>
+                            </execution>
+                        </executions>
+                    </plugin>
+                    <plugin>
+                        <groupId>org.apache.sling</groupId>
+                        <artifactId>slingstart-maven-plugin</artifactId>
+                        <extensions>true</extensions>
+                        <executions>
+                            <execution>
+                                <id>start-container</id>
+                                <goals>
+                                    <goal>start</goal>
+                                    <goal>stop</goal>
+                                </goals>
+                            </execution>
+                        </executions>
+                        <configuration>
+                            <usePomDependencies>true</usePomDependencies>
+                            <servers>
+                                <server>
+                                    <port>${http.port}</port>
+                                    <controlPort>${sling.control.port}</controlPort>
+                                    <runmode>${sling.run.modes}</runmode>
+                                    <contextPath>${http.base.path}</contextPath>
+                                    <debug>${jacoco.agent}</debug>
+                                </server>
+                            </servers>
+                        </configuration>
+                    </plugin>
+                    <plugin>
+                        <groupId>org.jacoco</groupId>
+                        <artifactId>jacoco-maven-plugin</artifactId>
+                        <version>${jacoco.maven.plugin.version}</version>
+                        <executions>
+                            <execution>
+                                <id>default-prepare-agent</id>
+                                <goals>
+                                    <goal>prepare-agent</goal>
+                                </goals>
+                                <configuration>
+                                    <propertyName>jacoco.agent</propertyName>
+                                    <destFile>${project.build.directory}/jacoco-it.exec</destFile>
+                                </configuration>
+                            </execution>
+                            <execution>
+                                <id>merge-reports</id>
+                                <phase>verify</phase>
+                                <goals>
+                                    <goal>merge</goal>
+                                </goals>
+                                <configuration>
+                                    <fileSets>
+                                        <fileSet>
+                                            <directory>${project.build.directory}</directory>
+                                            <includes>
+                                                <include>jacoco-it.exec</include>
+                                                <include>compiler-jacoco/jacoco.exec</include>
+                                                <include>java-compiler-jacoco/jacoco.exec</include>
+                                                <include>engine-jacoco/jacoco.exec</include>
+                                            </includes>
+                                        </fileSet>
+                                    </fileSets>
+                                    <destFile>${project.build.directory}/jacoco.exec</destFile>
+                                </configuration>
+                            </execution>
+                            <execution>
+                                <id>final-report</id>
+                                <phase>verify</phase>
+                                <goals>
+                                    <goal>report</goal>
+                                </goals>
+                                <configuration>
+                                    <includes>
+                                        <include>org/apache/sling/scripting/sightly/**/*</include>
+                                    </includes>
+                                    <excludes>
+                                        <exclude>org/apache/sling/scripting/sightly/impl/parser/expr/generated/**/*</exclude>
+                                    </excludes>
+                                </configuration>
+                            </execution>
+                            <execution>
+                                <id>check-coverage</id>
+                                <goals>
+                                    <goal>check</goal>
+                                </goals>
+                                <configuration>
+                                    <includes>
+                                        <include>org/apache/sling/scripting/sightly/**/*</include>
+                                    </includes>
+                                    <excludes>
+                                        <exclude>org/apache/sling/scripting/sightly/impl/parser/expr/generated/**/*</exclude>
+                                    </excludes>
+                                    <rules>
+                                        <rule>
+                                            <element>BUNDLE</element>
+                                            <limits>
+                                                <limit>
+                                                    <counter>INSTRUCTION</counter>
+                                                    <value>COVEREDRATIO</value>
+                                                    <minimum>0.80</minimum>
+                                                </limit>
+                                            </limits>
+                                        </rule>
+                                    </rules>
+                                </configuration>
+                            </execution>
+                        </executions>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
+    </profiles>
+
+    <dependencies>
+
+        <!-- The integration tests -->
+        <dependency>
+            <groupId>io.sightly</groupId>
+            <artifactId>io.sightly.tck</artifactId>
+            <version>1.4.0</version>
+            <scope>test</scope>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.slf4j</groupId>
+                    <artifactId>slf4j-simple</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+
+        <!-- Launchpad dependencies -->
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.scripting.sightly.runtime</artifactId>
+            <version>1.0.0-1.4.0</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.scripting.sightly.compiler</artifactId>
+            <version>1.1.0-1.4.0</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.scripting.sightly.compiler.java</artifactId>
+            <version>1.1.0-1.4.0</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.scripting.sightly</artifactId>
+            <version>1.1.0-1.4.0</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.scripting.sightly.js.provider</artifactId>
+            <version>1.0.28</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.scripting.sightly.models.provider</artifactId>
+            <version>1.0.8</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.scripting.sightly.testing-content</artifactId>
+            <version>1.0.12-1.4.0</version>
+            <scope>provided</scope>
+        </dependency>
+
+        <!-- Dependencies for the Test Build and Run -->
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.testing.rules</artifactId>
+            <version>1.0.0</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-simple</artifactId>
+            <scope>compile</scope>
+        </dependency>
+
+        <!-- Dependency for running Sling performance tests -->
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.performance.base</artifactId>
+            <version>1.0.2</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.httpcomponents</groupId>
+            <artifactId>httpmime</artifactId>
+            <version>4.4</version>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
+</project>

Added: release/sling/org.apache.sling.scripting.sightly.testing-1.0.14-1.4.0.pom.asc
==============================================================================
--- release/sling/org.apache.sling.scripting.sightly.testing-1.0.14-1.4.0.pom.asc (added)
+++ release/sling/org.apache.sling.scripting.sightly.testing-1.0.14-1.4.0.pom.asc Mon Nov  5 10:50:34 2018
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEcT4CQ0LcQDURXubcnd0BNZZEeNMFAlvZ5AAACgkQnd0BNZZE
+eNPTuRAAjXhpoJguwE1BFonx05nh6KpUgTX77eNI6g5eyXuZt+tVsmzlCdw+xSHd
+B8X752c5FlPHwMjz7WGEhT8BSU/oH8Hs0NQrMplXt8a/l8Wq0raDC/RBWxUvuq1W
+phjHEFzrL1Ix/6kX9w7L/an1pO87FxAR815Ve1QtR99oDUmznupeelv+jtgP6aDX
+Ywsv0OTNPs1vn88N8P1hN1eZSnyz3MOrEhCOfKD1it3jmWhZw4WSBxV5w3xiUhG7
+N+hM1ct+a7QrIIQlJGg6NxqZOdmuqYZYeuJyZBMYj/99yKASPN9gYSSnCKXcKiJV
+i+xE6xdakoJeuX4xKrO5Dh7aiTFNbUFv/aJaFgt+VyXzOcr5iQxqTf78Cuv6jglS
+0JJj4l3bgXGr0lsjzx85NirtN2rccQ5ptOZWs2gGpTcExDhXm4A6u6D4SbTfDstO
+oEPEAqaL74F5jYApmEcfn/QYNtH1nNxoTMB/TuATd7n7prYTKWIbb3LlfXn/QTS0
+TRU2i13IlQHKIyvGqwK8Pvw0yjjV5ksOcE9poqVr+KR+g+76j+hwmmmsSUL6hWeJ
+Bwy9IBQ4tX6FKE3fI04zDu9Ek34vVne+gdjFFy56ViZLzxuDJz32q9KiYnOwE3zR
+YzI1CrLSWWiQ2C2AqLN26r4jciC1kBi0lPy3r7cE8zOFWfYPPwE=
+=6Mqd
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.scripting.sightly.testing-1.0.14-1.4.0.pom.md5
==============================================================================
--- release/sling/org.apache.sling.scripting.sightly.testing-1.0.14-1.4.0.pom.md5 (added)
+++ release/sling/org.apache.sling.scripting.sightly.testing-1.0.14-1.4.0.pom.md5 Mon Nov  5 10:50:34 2018
@@ -0,0 +1 @@
+020f4f6ded463fb06c11b6df88dfc529
\ No newline at end of file

Added: release/sling/org.apache.sling.scripting.sightly.testing-1.0.14-1.4.0.pom.sha1
==============================================================================
--- release/sling/org.apache.sling.scripting.sightly.testing-1.0.14-1.4.0.pom.sha1 (added)
+++ release/sling/org.apache.sling.scripting.sightly.testing-1.0.14-1.4.0.pom.sha1 Mon Nov  5 10:50:34 2018
@@ -0,0 +1 @@
+fbbcaa4201cd84d5b5dd6dc38a054d30adc3b617
\ No newline at end of file

Added: release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.14-1.4.0-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.14-1.4.0-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.14-1.4.0-javadoc.jar.asc
==============================================================================
--- release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.14-1.4.0-javadoc.jar.asc (added)
+++ release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.14-1.4.0-javadoc.jar.asc Mon Nov  5 10:50:34 2018
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEcT4CQ0LcQDURXubcnd0BNZZEeNMFAlvZ3tAACgkQnd0BNZZE
+eNMUrxAAuhbDi1qoeZ6rPCwgEcdDbTWDXkccj50umplfBhcncYx7eBX/YOa3cbQS
+gY9FqyasLotYdAnjpUptX50mowT+Ftdlf7Pwf8++8JjWfUvX5n19MJeF1hWrGyIe
+X7zEDK9VAWvxvSq61RjoMOFapDOV1faR7LZGSFoKhCVvm0b2HcXvaQybFchUCq6O
+WrCOIdb/mvIySReS76HxH0hxoLo/hcDQHM6Pfz75kUOkIo4y+2dNu8DvRfPNUJU3
+h+kYsisPzy+QMRlhyqiOcV2O8KiFAwASUbzpeHGbJrW82wTEGf2DighBWaCiCizn
+XOqwXgdC1nPg6XJC+WNXqSipFWo98QMfEDS4ub9wV5CZPj626cF8wrWirO7BsNY7
+dmsmyMjhIxkTV+j6ZGWGTfRZ9+lIGNZLt96eDc/qfhmCNRpYpmi+xl6cqCq4/Xtw
+Q5Tt/vLIoEYxUq+ejKzkkZVmok8ztN+AhkIkWPhze87L1UTW2/oBSw1U3PKf+Gki
+r/v7Q+++klNnziz74vxPBzDwZ4xxOR19onKtyzg0O8NG0IgbhJ5TCNMJ+8yHLhWs
+zB1/Q5hMmJzjv+rMiUlJKugSI2fgNlg7aR/EkI4Bkq+6JSWy58+fCeLFLzrzWYWw
+KjuGrqScCtXy/61GC5VfQhym7CDNRDj515LsYU3iMRb0SOCMR28=
+=KPub
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.14-1.4.0-javadoc.jar.md5
==============================================================================
--- release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.14-1.4.0-javadoc.jar.md5 (added)
+++ release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.14-1.4.0-javadoc.jar.md5 Mon Nov  5 10:50:34 2018
@@ -0,0 +1 @@
+99fc5cc6440410da94475b1c6b15b7ae
\ No newline at end of file

Added: release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.14-1.4.0-javadoc.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.14-1.4.0-javadoc.jar.sha1 (added)
+++ release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.14-1.4.0-javadoc.jar.sha1 Mon Nov  5 10:50:34 2018
@@ -0,0 +1 @@
+47c5134c26537c2e71891f66ea8bdf721d6a0d73
\ No newline at end of file

Added: release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.14-1.4.0-source-release.zip
==============================================================================
Binary file - no diff available.

Propchange: release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.14-1.4.0-source-release.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.14-1.4.0-source-release.zip.asc
==============================================================================
--- release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.14-1.4.0-source-release.zip.asc (added)
+++ release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.14-1.4.0-source-release.zip.asc Mon Nov  5 10:50:34 2018
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEcT4CQ0LcQDURXubcnd0BNZZEeNMFAlvZ3tAACgkQnd0BNZZE
+eNOW2Q//XwmWK4zvAEQwsICod+Aojhb6Xqz2wjRfdRMh0vXWQ1qMtS0Zs9WThwAj
+2mfpE76klsx+7gmW4JYc/8cJvmWCHAL/cXPDGN+PtaN28iTC5Z3Jf8XHh5VJkWuO
+Z2AtDacYj0xmkkv/FUfM6fS/VKsmJuY0+wTmw8Ev1moXL0CfT4sU9Wh4MWS3n0uq
+24G61BBTrUyucikQsH1kfvtsAjnfLwJT3POjgFU1CvFd4xr31ejxlKgU8WrVlFdj
+uVX4Xo3KzWA8nyvniVUapH/MFsgy5dWFBWKqdz9bWhsvqr4R5HwJAjg03Oq/4lx4
+jnOapPGc/lzKiCNMgypiMD3xXHdL5B26e3IwQdXlN784kTA4t1ApJym8z/lwtK7T
+EJtKZFjZMJcaZ/QYc51LFgrcMehjSlDTAtIdogl3ZY7kCWJpEcM1zaMtdJ2yJEKd
+5akMBzrliMsIZDURrkzVumWze6tVU11+38flT9QzcOZHq6fOD7J9nJlm0lduycSc
+J+j9g1a8iOR2WtVOv2NGUEKL3EMUb0ecynbJjqREpraJRJY6h8bRKTQraAUfnR31
+bxn49QeSGLT86uxmMhKUoUguwcmwiISlfR9V288tzs3MXaDS3moJFrDTdaSshBrh
+fkD92vMJI2qe7iRfMJ/pCK2EvNfmrPIoa1S43cxYJPK5PsQ5y1k=
+=x8qC
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.14-1.4.0-source-release.zip.md5
==============================================================================
--- release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.14-1.4.0-source-release.zip.md5 (added)
+++ release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.14-1.4.0-source-release.zip.md5 Mon Nov  5 10:50:34 2018
@@ -0,0 +1 @@
+ef51dd34e18b0dad4e13792e7b6dab73
\ No newline at end of file

Added: release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.14-1.4.0-source-release.zip.sha1
==============================================================================
--- release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.14-1.4.0-source-release.zip.sha1 (added)
+++ release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.14-1.4.0-source-release.zip.sha1 Mon Nov  5 10:50:34 2018
@@ -0,0 +1 @@
+c7089d3db98158bc202d9f94bef04434eab8eb45
\ No newline at end of file

Added: release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.14-1.4.0-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.14-1.4.0-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.14-1.4.0-sources.jar.asc
==============================================================================
--- release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.14-1.4.0-sources.jar.asc (added)
+++ release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.14-1.4.0-sources.jar.asc Mon Nov  5 10:50:34 2018
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEcT4CQ0LcQDURXubcnd0BNZZEeNMFAlvZ3tAACgkQnd0BNZZE
+eNOgkhAAqN7hYK+aBrIPPfk/AyUhwB63a4GrxgZLLSEFgY8cJnKd/wzBjX/y5yPd
+BMy2Rq/Ymmv34hOBQCN9zHQnORAfC9NNr10zW/If0rHpeaQUd/Psb2LMbiN9XEzC
+1XgG64YmDT0TzoNllLKNQ+GT3BIjD0c6iU+w4WIGFpzxjbnYsZMyHTmzP3n0VN96
+RFtxqvFv1NcguQ4fUUH8qt6WfaOYbpNEXAG++kzSF/UHfMssm/Jcijek+VK54GAk
+XmMg+yUC0bjCATN0XtehC1ssDMhePEqPQNKYDW9A8CIZeHCXbd9P9WgEdwcG5BQQ
+IhJxpbRt8dCCjeLOD3L1uIMAB2+7meP2rKNKUuTIXuApyTADWFuba/eiXvNW7tbG
+1uF/Pyce8go3mMeLp2QHGqNXfrNPUg3ZCrTtXoKPjalNF4uvZCZlmduIxYLt55oN
+PIWoh5+NMcKRW4ad0fwSKaN8Gt/zTArOtutsssfSSRAbu1mPOVbgrKcojrKUlgiw
+ddJX2NbWtmS2qXekf/4WWmIHtBohXQYABm6W3lMZRkvj0Ki1IktwOShZ+6Gmshsn
+1v/mFDro+VMXyO3KflW0QmSl5OQcLC/EL0K1w71IHh+rTtauAHNNAyXGrieg1XA6
+S4PResGeJYpgAicOAr/y/UUHtkU3rLisiIqDQiciZUHYRCxdY+A=
+=x8hw
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.14-1.4.0-sources.jar.md5
==============================================================================
--- release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.14-1.4.0-sources.jar.md5 (added)
+++ release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.14-1.4.0-sources.jar.md5 Mon Nov  5 10:50:34 2018
@@ -0,0 +1 @@
+7f7651c83f0f604eeee155ba0f986f01
\ No newline at end of file

Added: release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.14-1.4.0-sources.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.14-1.4.0-sources.jar.sha1 (added)
+++ release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.14-1.4.0-sources.jar.sha1 Mon Nov  5 10:50:34 2018
@@ -0,0 +1 @@
+1e18853866a9733d88dff52ad5c98d33a44a41ee
\ No newline at end of file

Added: release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.14-1.4.0.jar
==============================================================================
Binary file - no diff available.

Propchange: release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.14-1.4.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.14-1.4.0.jar.asc
==============================================================================
--- release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.14-1.4.0.jar.asc (added)
+++ release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.14-1.4.0.jar.asc Mon Nov  5 10:50:34 2018
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEcT4CQ0LcQDURXubcnd0BNZZEeNMFAlvZ3s8ACgkQnd0BNZZE
+eNO1bBAAjsJtAXPiOQvuZFy49LX3/6C0grAnOwwSC/NWRXXH2TpvxXq80Tpe6iL7
+NwoWaskDSsVhTX3m+loC2T/5H5bUx+osh+15UL+9/UzBYR4F6ZnI8KLNHXycgoTv
+KDOz9MvITiTE6iPdR0z/ItoSPSFj65pyJ5cGat7OvWdX8RLmVuVv701j0ghItCS6
+dUep6mlyVK/RkoALOXb9Yn2aYart2X1G1Ov8S0mClyyLXThD21EgXwpTnNleIYiQ
+xOpVf+s64tkFBaKakRf9iFM/Tla4q4xo6WwvaBWkJU4FTQrpbkRVcEREGxY47mZj
+PkFJg4m8qdNPw9bjz0FbS/iBA9sgX9nLCxynsNqRWAxwvDOQUgMfb9MWooa/Mj3l
+mJfwwv0ANCRSNxzDG6bqww3CEWK8bsDQy1DAap2vppQQbzPX+SsxX3hxHicBOsrb
+ePT2isLmAjq5MLfS5cijzi5piv0gG3p/oFbv629XUuysjvJZLHG1omagtWoldEyd
+zo43UavpeFy463R0TAX7lD+ZDhs6/CEYLKzXgFbKh7VEfxBF8H002LmOV4akexgg
+JoXD1zpYKKkcOc9jieAJatSMQbL2RvxF7dvMc8hKmZUZ7YY6Dwad1TTe9cS1yXnf
+FWL9yiOgX3D8tP0eI0Di5GUlFRx0GyJ0lrhgJNhOEdCOEuiRngg=
+=OQGV
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.14-1.4.0.jar.md5
==============================================================================
--- release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.14-1.4.0.jar.md5 (added)
+++ release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.14-1.4.0.jar.md5 Mon Nov  5 10:50:34 2018
@@ -0,0 +1 @@
+3e3611c66800ed582c8b1736ebb0f713
\ No newline at end of file

Added: release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.14-1.4.0.jar.sha1
==============================================================================
--- release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.14-1.4.0.jar.sha1 (added)
+++ release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.14-1.4.0.jar.sha1 Mon Nov  5 10:50:34 2018
@@ -0,0 +1 @@
+69df4edab25772ace179ccac1999be64d73bb4b4
\ No newline at end of file

Added: release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.14-1.4.0.pom
==============================================================================
--- release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.14-1.4.0.pom (added)
+++ release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.14-1.4.0.pom Mon Nov  5 10:50:34 2018
@@ -0,0 +1,253 @@
+<?xml version="1.0"?>
+<!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+  ~ 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>
+    <!-- ======================================================================= -->
+    <!-- P A R E N T   P R O J E C T                                             -->
+    <!-- ======================================================================= -->
+    <parent>
+        <groupId>org.apache.sling</groupId>
+        <artifactId>sling</artifactId>
+        <version>30</version>
+        <relativePath />
+    </parent>
+
+    <!-- ======================================================================= -->
+    <!-- P R O J E C T                                                           -->
+    <!-- ======================================================================= -->
+    <artifactId>org.apache.sling.scripting.sightly.testing-content</artifactId>
+    <!--
+        The versioning scheme defined here corresponds to SLING-7406 (<module_version>-<htl_specification_version>). Take care when
+        releasing to only increase the first part, unless the module provides support for a newer version of the HTL specification.
+    -->
+    <version>1.0.14-1.4.0</version>
+    <packaging>bundle</packaging>
+
+    <name>Apache Sling Scripting HTL Integration Tests Content</name>
+
+    <description>
+        This bundle contains:
+            - Content adapted from the Adobe HTL TCK meant to test the org.apache.sling.scripting.HTL implementations.
+            - Content meant to test performance of the org.apache.sling.scripting.HTL implementation.
+    </description>
+
+    <scm>
+        <connection>scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-scripting-sightly-testing-content.git</connection>
+        <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-scripting-sightly-testing-content.git</developerConnection>
+        <url>https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-scripting-sightly-testing-content.git</url>
+      <tag>org.apache.sling.scripting.sightly.testing-content-1.0.14-1.4.0</tag>
+  </scm>
+
+
+    <!-- ======================================================================= -->
+    <!-- B U I L D                                                               -->
+    <!-- ======================================================================= -->
+    <build>
+        <resources>
+            <resource>
+                <directory>${basedir}/src/main/resources</directory>
+            </resource>
+            <resource>
+                <directory>${project.build.outputDirectory}/SLING-INF/sightlytck</directory>
+                <targetPath>SLING-INF/sightlytck</targetPath>
+            </resource>
+        </resources>
+        <pluginManagement>
+            <plugins>
+                <plugin>
+                    <!-- Extend RAT configuration from parent pom -->
+                    <groupId>org.apache.rat</groupId>
+                    <artifactId>apache-rat-plugin</artifactId>
+                    <configuration>
+                        <excludes combine.children="append">
+                            <exclude>src/main/resources/SLING-INF/**/*.json</exclude>
+                            <exclude>src/main/resources/SLING-INF/**/*.ecma</exclude>
+                            <!-- Ignore files generated bei IDE plugins e.g. maven-eclipse-plugin -->
+                            <exclude>maven-eclipse.xml</exclude>
+                            <exclude>.*</exclude>
+                            <exclude>.*/**</exclude>
+                        </excludes>
+                    </configuration>
+                </plugin>
+            </plugins>
+        </pluginManagement>
+
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-dependency-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <id>unpack</id>
+                        <phase>generate-resources</phase>
+                        <goals>
+                            <goal>unpack</goal>
+                        </goals>
+                        <configuration>
+                            <artifactItems>
+                                <artifactItem>
+                                    <groupId>io.sightly</groupId>
+                                    <artifactId>io.sightly.tck</artifactId>
+                                    <version>1.4.0</version>
+                                    <type>jar</type>
+                                    <outputDirectory>${project.build.directory}/sightlytck/</outputDirectory>
+                                    <includes>**/*.html,**/*.js,**/*.java</includes>
+                                </artifactItem>
+                            </artifactItems>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <artifactId>maven-resources-plugin</artifactId>
+                <version>2.7</version>
+                <executions>
+                    <execution>
+                        <id>copy-resources</id>
+                        <phase>generate-resources</phase>
+                        <goals>
+                            <goal>copy-resources</goal>
+                        </goals>
+                        <configuration>
+                            <outputDirectory>${project.build.outputDirectory}/SLING-INF/sightlytck/scripts</outputDirectory>
+                            <resources>
+                                <resource>
+                                    <directory>${project.build.directory}/sightlytck/testfiles/scripts/</directory>
+                                </resource>
+                            </resources>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-bundle-plugin</artifactId>
+                <extensions>true</extensions>
+                <configuration>
+                    <instructions>
+                        <Import-Package>
+                            javax.inject;version=1.0.0,
+                            *
+                        </Import-Package>
+                        <Sling-Initial-Content>SLING-INF;uninstall:=true;ignoreImportProviders:=jar</Sling-Initial-Content>
+                        <Sling-Model-Packages>org.apache.sling.scripting.sightly.testing.models</Sling-Model-Packages>
+                        <Require-Capability>io.sightly; filter:="(&amp;(version&gt;=1.0)(!(version&gt;=2.0)))"</Require-Capability>
+                    </instructions>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.sling</groupId>
+                <artifactId>maven-sling-plugin</artifactId>
+                <configuration>
+                    <failOnError>true</failOnError>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>jslint-maven-plugin</artifactId>
+                <version>1.0.1</version>
+                <configuration>
+                    <sourceJsFolder>${basedir}/src/main/resources/SLING-INF</sourceJsFolder>
+                    <includes>
+                        <include>**/*.json</include>
+                    </includes>
+                    <encoding>UTF-8</encoding>
+                </configuration>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>jslint</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-scr-plugin</artifactId>
+                <dependencies>
+                    <dependency>
+                        <groupId>javax.jcr</groupId>
+                        <artifactId>jcr</artifactId>
+                        <version>2.0</version>
+                    </dependency>
+                </dependencies>
+            </plugin>
+        </plugins>
+    </build>
+
+    <repositories>
+        <repository>
+            <id>oss-sonatype</id>
+            <name>OSS Sonatype</name>
+            <url>https://oss.sonatype.org/content/repositories/snapshots</url>
+        </repository>
+    </repositories>
+
+    <dependencies>
+        <!-- Test bundle dependencies -->
+        <dependency>
+            <groupId>org.apache.felix</groupId>
+            <artifactId>org.apache.felix.scr.annotations</artifactId>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>javax.servlet</groupId>
+            <artifactId>javax.servlet-api</artifactId>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>javax.inject</groupId>
+            <artifactId>javax.inject</artifactId>
+            <version>1</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.models.api</artifactId>
+            <version>1.2.2</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.api</artifactId>
+            <version>2.1.0</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.scripting.sightly.runtime</artifactId>
+            <version>1.0.0-1.4.0</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.scripting.sightly</artifactId>
+            <version>1.1.0-1.4.0</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.commons.osgi</artifactId>
+            <version>2.4.0</version>
+            <scope>provided</scope>
+        </dependency>
+    </dependencies>
+
+</project>

Added: release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.14-1.4.0.pom.asc
==============================================================================
--- release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.14-1.4.0.pom.asc (added)
+++ release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.14-1.4.0.pom.asc Mon Nov  5 10:50:34 2018
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEcT4CQ0LcQDURXubcnd0BNZZEeNMFAlvZ3s8ACgkQnd0BNZZE
+eNPWZxAAgDNsGUHamhWE4b5iH68j8ZwEQ5l0rgfTEoZN2uqZy0mWtqrkuG/95ZRo
+hUN+rAJmkcNrHRJ8LxGCB6C4b8uVlQGTZ2hZD7PK7mi6+joRlUBCldYOVpgoV/Do
+X7blcFmxhjVxNpRDdvIMhdREXjjTzcImVLTk/WH3EkW5bSAcanOzzKZn32XvKK2n
+yQXed7rqqJUHNRN0z9kw/7xFEEb7WaoWvJJ5lzpW1vDp/q3z8qpA5ljvC9uo2y8m
+0ENSHqXMb5wYFyjRZ9KqOGClkqiDsUnBaX6LNw35q7QMR7sUiELWiK9yqeDXb2pO
+fL8W3rbs3ATnXQ1mZnlXbzcF7S9TREqERVAgrpogVRjWcSEWONKiPxc3LWWx/VOV
+WNsIrssIGyfe5ciG+PHp3nrpNkEqS2M3Vs9og7LF/evKiOu6yvv9tdgOtku+O/xC
+cU5Tf2iabM+x9CnotfPNAhkRDZRfYRx98QruoGEj0PVAA/BWb224+f27yDoXi4NT
+j57kBE4IpUT6BzdVaIu8mbJSCjffnWDyOaxzoMC1GVklEiZCBheOItNrbiW7b31V
+pHVqrYVtvn6BDLOROq0T+/7ErUngsH01x/svileQKK6pXBopbswIe6chmd+ueurB
+ieBqiLj3v65ej2eHJUE2VMCLYJpYFbH2NYkL+6qq1KFIOBFsfcg=
+=6J+0
+-----END PGP SIGNATURE-----

Added: release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.14-1.4.0.pom.md5
==============================================================================
--- release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.14-1.4.0.pom.md5 (added)
+++ release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.14-1.4.0.pom.md5 Mon Nov  5 10:50:34 2018
@@ -0,0 +1 @@
+68ededa9961478b905ac98837877c498
\ No newline at end of file

Added: release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.14-1.4.0.pom.sha1
==============================================================================
--- release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.14-1.4.0.pom.sha1 (added)
+++ release/sling/org.apache.sling.scripting.sightly.testing-content-1.0.14-1.4.0.pom.sha1 Mon Nov  5 10:50:34 2018
@@ -0,0 +1 @@
+b4167c5f5bc4a433bad54a5c84821e7b9f3292af
\ No newline at end of file