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-commons-compiler.git
commit 0a01ae44254295ac575125465c3c2d251571cff6 Author: Stefan Seifert <[email protected]> AuthorDate: Wed Nov 26 16:20:20 2025 +0100 SLING-13013 Update to Parent 62 --- .sling-module.json | 5 +++++ pom.xml | 13 ++++++++++++- 2 files changed, 17 insertions(+), 1 deletion(-) 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 1123ecf..327960e 100644 --- a/pom.xml +++ b/pom.xml @@ -23,7 +23,7 @@ <parent> <groupId>org.apache.sling</groupId> <artifactId>sling-bundle-parent</artifactId> - <version>38</version> + <version>62</version> <relativePath /> </parent> @@ -36,6 +36,10 @@ support using the Eclipse Java Compiler (org.eclipse.jdt). </description> + <properties> + <sling.java.version>11</sling.java.version> + </properties> + <scm> <connection>scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-commons-compiler.git</connection> <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-commons-compiler.git</developerConnection> @@ -65,10 +69,12 @@ <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.annotation.versioning</artifactId> + <scope>provided</scope> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.service.component.annotations</artifactId> + <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.sling</groupId> @@ -81,24 +87,29 @@ <groupId>org.eclipse.jdt</groupId> <artifactId>ecj</artifactId> <version>3.16.0</version> <!-- this is the version shipped in 2018-12/4.10.0 --> + <scope>provided</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> + <scope>provided</scope> </dependency> <dependency> <groupId>org.jetbrains</groupId> <artifactId>annotations</artifactId> + <scope>provided</scope> </dependency> <!-- testing --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> + <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> + <scope>test</scope> </dependency> </dependencies> </project>
