This is an automated email from the ASF dual-hosted git repository. rombert pushed a commit to branch issue/SLING-8307-2 in repository https://gitbox.apache.org/repos/asf/sling-ide-tooling.git
commit c54c64fca94007702fc90cdf4ddb35da1f573a22 Author: Robert Munteanu <[email protected]> AuthorDate: Fri Sep 19 11:35:04 2025 +0200 chore: indirection for shared deps --- eclipse/pom.xml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/eclipse/pom.xml b/eclipse/pom.xml index ad94f954..4f08c171 100644 --- a/eclipse/pom.xml +++ b/eclipse/pom.xml @@ -224,6 +224,7 @@ <properties> <tycho.version>4.0.13</tycho.version> + <sling-ide.shared-deps.version>1.3.9-SNAPSHOT</sling-ide.shared-deps.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <minimalJavaBuildVersion>17</minimalJavaBuildVersion> <maven.compiler.target>17</maven.compiler.target> @@ -236,19 +237,19 @@ <dependency> <groupId>org.apache.sling.ide</groupId> <artifactId>org.apache.sling.ide.api</artifactId> - <version>${project.version}</version> + <version>${sling-ide.shared-deps.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.sling.ide</groupId> <artifactId>org.apache.sling.ide.artifacts</artifactId> - <version>${project.version}</version> + <version>${sling-ide.shared-deps.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.sling.ide</groupId> <artifactId>org.apache.sling.ide.impl-vlt</artifactId> - <version>${project.version}</version> + <version>${sling-ide.shared-deps.version}</version> <scope>provided</scope> </dependency> </dependencies>
