This is an automated email from the ASF dual-hosted git repository. sseifert pushed a commit to branch feature/SLING-13013-parent-62 in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-jcr-registration.git
commit 44cdd103fff57115bd580ea819eb0b3713e937ca Author: Stefan Seifert <[email protected]> AuthorDate: Wed Nov 26 13:38:28 2025 +0100 SLING-13013 Update to Parent 62 --- .sling-module.json | 5 +++++ pom.xml | 17 ++++++++++------- 2 files changed, 15 insertions(+), 7 deletions(-) diff --git a/.sling-module.json b/.sling-module.json new file mode 100644 index 0000000..cfad4d2 --- /dev/null +++ b/.sling-module.json @@ -0,0 +1,5 @@ +{ + "jenkins": { + "jdks": [17, 21] + } +} \ No newline at end of file diff --git a/pom.xml b/pom.xml index 9eb5ccf..b3da429 100644 --- a/pom.xml +++ b/pom.xml @@ -22,7 +22,7 @@ <parent> <groupId>org.apache.sling</groupId> <artifactId>sling-bundle-parent</artifactId> - <version>48</version> + <version>62</version> <relativePath /> </parent> @@ -34,6 +34,10 @@ Bundle providing support to publish JCR repository services via RMI and/or JNDI </description> + <properties> + <sling.java.version>11</sling.java.version> + </properties> + <scm> <connection>scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-jcr-registration.git</connection> <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-jcr-registration.git</developerConnection> @@ -49,28 +53,27 @@ </dependency> <dependency> <groupId>org.osgi</groupId> - <artifactId>osgi.core</artifactId> + <artifactId>org.osgi.service.metatype.annotations</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.osgi</groupId> - <artifactId>org.osgi.service.metatype.annotations</artifactId> + <artifactId>org.osgi.service.component.annotations</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.osgi</groupId> - <artifactId>org.osgi.service.component.annotations</artifactId> + <artifactId>org.osgi.framework</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.osgi</groupId> - <artifactId>org.osgi.service.log</artifactId> - <version>1.4.0</version> + <artifactId>org.osgi.service.component</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.osgi</groupId> - <artifactId>org.osgi.service.component</artifactId> + <artifactId>org.osgi.service.log</artifactId> <scope>provided</scope> </dependency>
