This is an automated email from the ASF dual-hosted git repository. sseifert pushed a commit to branch feature/SLING-12730-parent-62 in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-scripting-java.git
commit 77c001b1d3fbfbe5090f467abe515c0ed9d58582 Author: Stefan Seifert <[email protected]> AuthorDate: Fri Mar 28 16:54:34 2025 +0100 SLING-12730 Update to Parent 62 --- .sling-module.json | 5 +++++ pom.xml | 9 +++++++-- 2 files changed, 12 insertions(+), 2 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 ee218da..73ec2d0 100644 --- a/pom.xml +++ b/pom.xml @@ -24,7 +24,7 @@ <parent> <groupId>org.apache.sling</groupId> <artifactId>sling-bundle-parent</artifactId> - <version>41</version> + <version>62</version> <relativePath /> </parent> @@ -41,6 +41,10 @@ <tag>HEAD</tag> </scm> + <properties> + <sling.java.version>8</sling.java.version> + </properties> + <build> <plugins> <plugin> @@ -71,7 +75,7 @@ <!-- OSGi --> <dependency> <groupId>org.osgi</groupId> - <artifactId>osgi.core</artifactId> + <artifactId>org.osgi.framework</artifactId> <scope>provided</scope> </dependency> <dependency> @@ -119,6 +123,7 @@ <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> + <scope>provided</scope> </dependency> </dependencies>
