This is an automated email from the ASF dual-hosted git repository. sseifert pushed a commit to branch feature/SLING-13050-integration-tests-single-pom-it-only in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-models-impl.git
commit 80568761e52267e3b94046185f7914346bbf10fa Author: Stefan Seifert <[email protected]> AuthorDate: Wed Jan 28 11:12:19 2026 +0100 for debugging: build only unix java 21, do not run unit tests, only ITs --- .sling-module.json | 7 +++++-- pom.xml | 3 +++ 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.sling-module.json b/.sling-module.json index cfad4d2..c2aa7b9 100644 --- a/.sling-module.json +++ b/.sling-module.json @@ -1,5 +1,8 @@ { "jenkins": { - "jdks": [17, 21] - } + "jdks": [21] + }, + "operatingSystems": [ + "linux" + ] } \ No newline at end of file diff --git a/pom.xml b/pom.xml index 8ee787d..5e0fe76 100644 --- a/pom.xml +++ b/pom.xml @@ -304,6 +304,9 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <skip>true</skip> + </configuration> <dependencies> <dependency> <groupId>org.junit.jupiter</groupId>
