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 789f62d8c9b64a58dce285ca5ac6233da910f930 Author: Robert Munteanu <[email protected]> AuthorDate: Fri Sep 19 11:38:38 2025 +0200 chore(release): use released version of the shared modules when releasing the eclipse modules --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 670e1060..ac7cc1c1 100644 --- a/Makefile +++ b/Makefile @@ -30,7 +30,9 @@ release-shared: .PHONY=release-shared release-eclipse: + cd eclipse && mvn --batch-mode versions:set-property -Dproperty=sling-ide.shared-deps.version -DnewVersion=$(RELEASE_VERSION) && git add pom.xml && git commit -m 'chore(deps): set shared-deps version to $(RELEASE_VERSION) for release' cd eclipse && mvn --batch-mode release:prepare release:perform -DreleaseVersion=$(RELEASE_VERSION) -DdevelopmentVersion=$(NEXT_VERSION) -Dtag=sling-ide-tooling-eclipse-$(RELEASE_VERSION) + cd eclipse && mvn --batch-mode versions:set-property -Dproperty=sling-ide.shared-deps.version -DnewVersion=$(NEXT_VERSION) && git add pom.xml && git commit -m 'chore(deps): set shared-deps version to $(NEXT_VERSION) after the release' .PHONY=release-eclipse
