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 cf3106493e7a6f0a11baa743f26911b550209002 Author: Robert Munteanu <[email protected]> AuthorDate: Mon Sep 15 18:02:44 2025 +0200 chore(release): always activate p2update and source-bundle profiles Otherwise the maven-release-plugin fails to activate them when changing versions, leading to build failures. --- eclipse/pom.xml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/eclipse/pom.xml b/eclipse/pom.xml index 7b3ce23e..af383734 100644 --- a/eclipse/pom.xml +++ b/eclipse/pom.xml @@ -47,6 +47,8 @@ <module>eclipse-sightly-ui</module> <module>sightly-feature</module> <!-- test modules activated per profile --> + <module>p2update</module> + <module>source-bundle</module> </modules> <build> @@ -140,7 +142,6 @@ <goals>clean install</goals> <pushChanges>false</pushChanges> <autoVersionSubmodules>true</autoVersionSubmodules> - <preparationProfiles>apache-release</preparationProfiles> <releaseProfiles>apache-release,sign-with-gpg</releaseProfiles> <!-- See https://wiki.eclipse.org/Tycho/Release_Workflow --> <preparationGoals>org.eclipse.tycho:tycho-versions-plugin:${tycho.version}:update-eclipse-metadata org.apache.maven.plugins:maven-scm-plugin:1.9.5:add org.apache.maven.plugins:maven-scm-plugin:1.9.5:checkin</preparationGoals> @@ -244,10 +245,6 @@ </plugin> </plugins> </build> - <modules> - <module>p2update</module> - <module>source-bundle</module> - </modules> </profile> <profile> <id>eclipse-test</id>
