You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ol...@apache.org on 2018/09/25 08:45:39 UTC

[sling-org-apache-sling-karaf-launchpad-oak-tar-integration-tests] branch master updated (4239f15 -> fce157a)

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

olli pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-karaf-launchpad-oak-tar-integration-tests.git.


    from 4239f15  trivial: added license header to *.md files
     new 94d1804  SLING-7875 Update Pax Exam to 4.12.0
     new fce157a  SLING-3821 Run launchpad integration tests against Sling on Karaf

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 pom.xml                                                             | 6 +++---
 .../tests/configuration/SlingQuickstartOakTarConfiguration.java     | 3 ++-
 2 files changed, 5 insertions(+), 4 deletions(-)


[sling-org-apache-sling-karaf-launchpad-oak-tar-integration-tests] 01/02: SLING-7875 Update Pax Exam to 4.12.0

Posted by ol...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

olli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-karaf-launchpad-oak-tar-integration-tests.git

commit 94d1804b0d882de19e5afc6b495ef4a430f2f187
Author: Oliver Lietz <ol...@apache.org>
AuthorDate: Mon Sep 24 22:04:47 2018 +0200

    SLING-7875 Update Pax Exam to 4.12.0
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index a43e8b6..0e9b207 100644
--- a/pom.xml
+++ b/pom.xml
@@ -104,19 +104,19 @@
     <dependency>
       <groupId>org.ops4j.pax.exam</groupId>
       <artifactId>pax-exam</artifactId>
-      <version>4.11.0</version>
+      <version>4.12.0</version>
       <scope>test</scope>
     </dependency>
     <dependency>
       <groupId>org.ops4j.pax.exam</groupId>
       <artifactId>pax-exam-container-karaf</artifactId>
-      <version>4.11.0</version>
+      <version>4.12.0</version>
       <scope>test</scope>
     </dependency>
     <dependency>
       <groupId>org.ops4j.pax.exam</groupId>
       <artifactId>pax-exam-link-mvn</artifactId>
-      <version>4.11.0</version>
+      <version>4.12.0</version>
       <scope>test</scope>
     </dependency>
     <dependency>


[sling-org-apache-sling-karaf-launchpad-oak-tar-integration-tests] 02/02: SLING-3821 Run launchpad integration tests against Sling on Karaf

Posted by ol...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

olli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-karaf-launchpad-oak-tar-integration-tests.git

commit fce157ab2e55ec004a5ff2b3fb2bdaf76a9a3489
Author: Oliver Lietz <ol...@apache.org>
AuthorDate: Mon Sep 24 22:09:42 2018 +0200

    SLING-3821 Run launchpad integration tests against Sling on Karaf
    
    adjust repoinit statements, see org.apache.sling.launchpad.testing-war
---
 .../karaf/tests/configuration/SlingQuickstartOakTarConfiguration.java  | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/test/java/org/apache/sling/karaf/tests/configuration/SlingQuickstartOakTarConfiguration.java b/src/test/java/org/apache/sling/karaf/tests/configuration/SlingQuickstartOakTarConfiguration.java
index 0daaa22..f946df6 100644
--- a/src/test/java/org/apache/sling/karaf/tests/configuration/SlingQuickstartOakTarConfiguration.java
+++ b/src/test/java/org/apache/sling/karaf/tests/configuration/SlingQuickstartOakTarConfiguration.java
@@ -35,7 +35,8 @@ public class SlingQuickstartOakTarConfiguration extends KarafTestSupport {
         final int httpPort = Integer.getInteger("http.port");
         final String[] scripts = new String[]{
             "create path /repoinit/provisioningModelTest\ncreate service user provisioningModelUser",
-            "set ACL for everyone\nallow jcr:read on /\nend"
+            "create path (sling:OrderedFolder) /ANON_CAN_READ",
+            "set ACL for everyone\nallow jcr:read on /ANON_CAN_READ\nend"
         };
         return OptionUtils.combine(baseConfiguration(),
             cleanCaches(true),