This is an automated email from the ASF dual-hosted git repository. rombert pushed a commit to branch issue/SLING-8307-prep in repository https://gitbox.apache.org/repos/asf/sling-ide-tooling.git
commit 622d5dd28f2839c06d5367ac4e0daaab5ba6b9ab Author: Robert Munteanu <[email protected]> AuthorDate: Fri Sep 19 11:35:04 2025 +0200 SLING-8307 - Update the Eclipse tooling release process after the restructuring and code signing changes Don't use project.version for the shared dependencies consumed by the Eclipse modules because the maven-release-plugin will view them as SNAPSHOT dependencies and will abort the release. --- eclipse/pom.xml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/eclipse/pom.xml b/eclipse/pom.xml index 25ce91f6..31bab0e6 100644 --- a/eclipse/pom.xml +++ b/eclipse/pom.xml @@ -189,6 +189,7 @@ <properties> <tycho.version>4.0.13</tycho.version> + <sling-ide.shared-deps.version>1.2.3-SNAPSHOT</sling-ide.shared-deps.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <minimalJavaBuildVersion>17</minimalJavaBuildVersion> <maven.compiler.target>17</maven.compiler.target> @@ -201,19 +202,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>
