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/18 17:04:24 UTC

[sling-parent] branch feature/starter-its-support created (now 8dcdd7d)

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

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


      at 8dcdd7d  SLING-11681 - Allow overriding the test classes directory for the failsafe plugin - starter-its profile

This branch includes the following new commits:

     new 8dcdd7d  SLING-11681 - Allow overriding the test classes directory for the failsafe plugin - starter-its profile

The 1 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.



[sling-parent] 01/01: 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 feature/starter-its-support
in repository https://gitbox.apache.org/repos/asf/sling-parent.git

commit 8dcdd7d7e253934044f3e1e3f26dd4bc7d1e0496
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>