You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ro...@apache.org on 2019/08/30 07:47:04 UTC

[sling-org-apache-sling-starter] branch master updated: Update to starter.content 1.0.6

This is an automated email from the ASF dual-hosted git repository.

rombert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-starter.git


The following commit(s) were added to refs/heads/master by this push:
     new 167ba0d  Update to starter.content 1.0.6
167ba0d is described below

commit 167ba0d0222bf4023c4bddf5f1fd8e72ac046e97
Author: Robert Munteanu <ro...@apache.org>
AuthorDate: Mon Aug 26 17:44:24 2019 +0200

    Update to starter.content 1.0.6
---
 src/main/provisioning/sling.txt                                  | 5 +++--
 src/test/java/org/apache/sling/launchpad/LaunchpadReadyRule.java | 2 +-
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/src/main/provisioning/sling.txt b/src/main/provisioning/sling.txt
index 51c2255..ac89592 100644
--- a/src/main/provisioning/sling.txt
+++ b/src/main/provisioning/sling.txt
@@ -27,7 +27,6 @@
     org.apache.felix/org.apache.felix.metatype/1.2.2
 
 [artifacts startLevel=5]
-    org.apache.sling/org.apache.sling.starter.content/1.0.4
     org.apache.felix/org.apache.felix.http.whiteboard/4.0.0
     org.apache.sling/org.apache.sling.extensions.webconsolebranding/1.0.2
     org.apache.sling/org.apache.sling.extensions.webconsolesecurityprovider/1.2.2
@@ -84,6 +83,8 @@
 [artifacts]
     # Add the Slingshot Sample provisioning model
     org.apache.sling/org.apache.sling.sample.slingshot/0.9.0/slingfeature/slingfeature
+    # Default Starter content
+    org.apache.sling/org.apache.sling.starter.content/1.0.6
     commons-collections/commons-collections/3.2.2
     org.apache.commons/commons-collections4/4.2
     commons-codec/commons-codec/1.12
@@ -91,7 +92,7 @@
     org.apache.httpcomponents/httpcore-osgi/4.4.10
     org.apache.httpcomponents/httpclient-osgi/4.5.6
     org.apache.sling/org.apache.sling.adapter/2.1.10
-    org.apache.sling/org.apache.sling.auth.form/1.0.14
+    org.apache.sling/org.apache.sling.auth.form/1.0.16
     org.apache.sling/org.apache.sling.bundleresource.impl/2.3.2
     org.apache.sling/org.apache.sling.commons.classloader/1.4.4
     org.apache.sling/org.apache.sling.commons.compiler/2.3.6
diff --git a/src/test/java/org/apache/sling/launchpad/LaunchpadReadyRule.java b/src/test/java/org/apache/sling/launchpad/LaunchpadReadyRule.java
index 9634ea9..d6b6d6f 100644
--- a/src/test/java/org/apache/sling/launchpad/LaunchpadReadyRule.java
+++ b/src/test/java/org/apache/sling/launchpad/LaunchpadReadyRule.java
@@ -39,7 +39,7 @@ public class LaunchpadReadyRule extends ExternalResource {
     public LaunchpadReadyRule(int launchpadPort) {
 
         checks.add(new Check("http://localhost:" + launchpadPort + "/server/default/jcr:root/content"));
-        checks.add(new Check("http://localhost:" + launchpadPort + "/content/starter/index.html") {
+        checks.add(new Check("http://localhost:" + launchpadPort + "/content/starter.html") {
             @Override
             public String runCheck(HttpResponse response) throws Exception {
                 try (InputStreamReader isr = new InputStreamReader(response.getEntity().getContent());