This is an automated email from the ASF dual-hosted git repository. sseifert pushed a commit to branch feature/parent-63 in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-starter-integration-tests.git
commit 2dc83059a65b35f51d62b53c133258c4c128c9df Author: Stefan Seifert <[email protected]> AuthorDate: Mon Dec 1 11:47:14 2025 +0100 SLING-13019 Update to Parent 63 --- .sling-module.json | 2 +- pom.xml | 11 ++++++----- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.sling-module.json b/.sling-module.json index cfad4d2..3298adb 100644 --- a/.sling-module.json +++ b/.sling-module.json @@ -1,5 +1,5 @@ { "jenkins": { - "jdks": [17, 21] + "jdks": [17, 21, 25] } } \ No newline at end of file diff --git a/pom.xml b/pom.xml index b43f47c..4fd5f16 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ <parent> <groupId>org.apache.sling</groupId> <artifactId>sling</artifactId> - <version>62</version> + <version>63</version> <relativePath /> </parent> @@ -63,9 +63,6 @@ <!-- Content-type for readiness check --> <launchpad.readiness.mediatype>.txt:text/plain</launchpad.readiness.mediatype> - <jackrabbit.version>2.22.2</jackrabbit.version> - <oak.version>1.88.0</oak.version> - <javadoc.excludePackageNames>org.apache.sling.*</javadoc.excludePackageNames> </properties> @@ -118,7 +115,6 @@ <dependency> <groupId>org.apache.jackrabbit</groupId> <artifactId>oak-jackrabbit-api</artifactId> - <version>${oak.version}</version> <scope>provided</scope> </dependency> <dependency> @@ -151,8 +147,13 @@ <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> </exclusion> + <exclusion> + <groupId>org.apache.jackrabbit</groupId> + <artifactId>jackrabbit-api</artifactId> + </exclusion> </exclusions> </dependency> + <!-- Pin http client depenendencies to recent version. Old ones are brought in by the testing tools and using exclusions leads to weird results - classes not
