This is an automated email from the ASF dual-hosted git repository. rombert pushed a commit to branch issue/SLING-8307 in repository https://gitbox.apache.org/repos/asf/sling-ide-tooling.git
commit a677b3892b59a05a547dd0b02b91e7de6a97bc5f Author: Robert Munteanu <[email protected]> AuthorDate: Mon Sep 15 15:03:07 2025 +0200 SLING-8307 - Update the Eclipse tooling release process after the restructuring and code signing changes Do not deploy shared bundles to a Maven repository when releasing. --- shared/parent/pom.xml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/shared/parent/pom.xml b/shared/parent/pom.xml index 5addb095..2c35b105 100644 --- a/shared/parent/pom.xml +++ b/shared/parent/pom.xml @@ -59,6 +59,15 @@ <failOnMissing>false</failOnMissing><!-- no release yet --> </configuration> </plugin> + <plugin> + <!-- When releasing we build the modules locally and include them in the p2 repository + but we do not release them on Maven Central. To be revisited if needed --> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-release-plugin</artifactId> + <configuration> + <goals>clean install</goals> + </configuration> + </plugin> </plugins> </pluginManagement> </build>
