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 2022/11/21 08:24:22 UTC

[sling-parent] branch master updated (a047fd4 -> d09a9f9)

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

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


    from a047fd4  SLING-11553 Update sling-maven-plugin to 3.0.2
     new fdae4a6  SLING-11681 - Allow overriding the test classes directory for the failsafe plugin - starter-its profile
     new d09a9f9  SLING-11682 - The starter-its profile does not set the start timeout for the Sling Starter

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:
 sling-parent/pom.xml | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)


[sling-parent] 01/02: SLING-11681 - Allow overriding the test classes directory for the failsafe plugin - starter-its profile

Posted by ro...@apache.org.
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-parent.git

commit fdae4a64a3b31652cdc1474ba8d0fc3dd7b5d1ac
Author: Robert Munteanu <ro...@apache.org>
AuthorDate: Fri Nov 18 18:03:06 2022 +0100

    SLING-11681 - Allow overriding the test classes directory for the failsafe plugin - starter-its profile
    
    Add a new starter-its.failsafeTestClassesDirectory user property, defaulting to surefire's own default property value.
---
 sling-parent/pom.xml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/sling-parent/pom.xml b/sling-parent/pom.xml
index 9db1732..35857f6 100644
--- a/sling-parent/pom.xml
+++ b/sling-parent/pom.xml
@@ -892,6 +892,7 @@
             </activation>
             <properties>
                 <it.startTimeoutSeconds>120</it.startTimeoutSeconds>
+                <starter-its.failsafeTestClassesDirectory>${project.build.testOutputDirectory}</starter-its.failsafeTestClassesDirectory>
             </properties>
             <dependencies>
                 <dependency>
@@ -1051,6 +1052,9 @@
                             <dependenciesToScan>
                                 <dependency>org.apache.sling:org.apache.sling.launchpad.integration-tests</dependency>
                             </dependenciesToScan>
+                            <testClassesDirectory>
+                                ${starter-its.failsafeTestClassesDirectory}
+                            </testClassesDirectory>
                             <includes>
                                 <include>**/*Test.java</include>
                                 <include>**/*IT.java</include>


[sling-parent] 02/02: SLING-11682 - The starter-its profile does not set the start timeout for the Sling Starter

Posted by ro...@apache.org.
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-parent.git

commit d09a9f9120eb61efb1a5efe022de1ab62599eb26
Author: Robert Munteanu <ro...@apache.org>
AuthorDate: Fri Nov 18 18:09:01 2022 +0100

    SLING-11682 - The starter-its profile does not set the start timeout for the Sling Starter
---
 sling-parent/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sling-parent/pom.xml b/sling-parent/pom.xml
index 35857f6..f24d16b 100644
--- a/sling-parent/pom.xml
+++ b/sling-parent/pom.xml
@@ -891,7 +891,7 @@
                 </property>
             </activation>
             <properties>
-                <it.startTimeoutSeconds>120</it.startTimeoutSeconds>
+                <starter-its.startTimeoutSeconds>120</starter-its.startTimeoutSeconds>
                 <starter-its.failsafeTestClassesDirectory>${project.build.testOutputDirectory}</starter-its.failsafeTestClassesDirectory>
             </properties>
             <dependencies>