This is an automated email from the ASF dual-hosted git repository. sseifert pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/sling-launchpad-comparator.git
commit 49654afad70b4a8c960be5d8b061efa6de48dadf Author: Stefan Seifert <[email protected]> AuthorDate: Mon Dec 16 13:33:21 2024 +0100 Update to parent 62 --- .gitignore | 1 + .sling-module.json | 5 +++++ pom.xml | 14 +++++++++++++- 3 files changed, 19 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 5b783ed..3581faa 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,4 @@ maven-eclipse.xml .DS_Store jcr.log atlassian-ide-plugin.xml +/dependency-reduced-pom.xml 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 1d2c670..991983e 100644 --- a/pom.xml +++ b/pom.xml @@ -15,7 +15,7 @@ <parent> <groupId>org.apache.sling</groupId> <artifactId>sling</artifactId> - <version>25</version> + <version>62</version> <relativePath/> </parent> <groupId>org.apache.sling.tooling</groupId> @@ -31,46 +31,55 @@ <groupId>org.eclipse.aether</groupId> <artifactId>aether-api</artifactId> <version>${aetherVersion}</version> + <scope>compile</scope> </dependency> <dependency> <groupId>org.eclipse.aether</groupId> <artifactId>aether-util</artifactId> <version>${aetherVersion}</version> + <scope>compile</scope> </dependency> <dependency> <groupId>org.eclipse.aether</groupId> <artifactId>aether-impl</artifactId> <version>${aetherVersion}</version> + <scope>compile</scope> </dependency> <dependency> <groupId>org.eclipse.aether</groupId> <artifactId>aether-connector-basic</artifactId> <version>${aetherVersion}</version> + <scope>compile</scope> </dependency> <dependency> <groupId>org.eclipse.aether</groupId> <artifactId>aether-transport-file</artifactId> <version>${aetherVersion}</version> + <scope>compile</scope> </dependency> <dependency> <groupId>org.eclipse.aether</groupId> <artifactId>aether-transport-http</artifactId> <version>${aetherVersion}</version> + <scope>compile</scope> </dependency> <dependency> <groupId>org.eclipse.aether</groupId> <artifactId>aether-transport-wagon</artifactId> <version>${aetherVersion}</version> + <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-aether-provider</artifactId> <version>${mavenVersion}</version> + <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-ssh</artifactId> <version>${wagonVersion}</version> + <scope>compile</scope> </dependency> <!-- Aether dependencies start --> @@ -91,6 +100,7 @@ <groupId>org.apache.sling</groupId> <artifactId>org.apache.sling.provisioning.model</artifactId> <version>1.8.2</version> + <scope>compile</scope> </dependency> <!-- Retrieve changelog data from Git --> @@ -98,6 +108,7 @@ <groupId>org.eclipse.jgit</groupId> <artifactId>org.eclipse.jgit</artifactId> <version>5.1.2.201810061102-r</version> + <scope>compile</scope> </dependency> <!-- Parse Jira JSON responses --> @@ -105,6 +116,7 @@ <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.2.4</version> + <scope>compile</scope> </dependency> <!-- Testing -->
