This is an automated email from the ASF dual-hosted git repository. kwin pushed a commit to branch feature/new-target in repository https://gitbox.apache.org/repos/asf/sling-ide-tooling.git
commit 823c7fbed860f133be053aae4c314c9e4511b70d Author: Konrad Windszus <k...@apache.org> AuthorDate: Fri May 2 20:36:08 2025 +0200 Use timestamp as qualifier for SNAPSHOT bundles Eclipse does not properly deal with OSGi bundles having -SNAPSHOT as version qualifier as it treats all versions immutable --- shared/parent/pom.xml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/shared/parent/pom.xml b/shared/parent/pom.xml index 7e4c9bbc..0933f721 100644 --- a/shared/parent/pom.xml +++ b/shared/parent/pom.xml @@ -46,7 +46,9 @@ <configuration> <!-- due to the non-Maven standard merging this is effectively added to the config set in sling-bundle-parent --> <!-- make sure to automatically start this bundle in Equinox whenever some classes are referenced --> - <bnd>Bundle-ActivationPolicy: lazy</bnd> + <bnd> + -snapshot: v${tstamp} + Bundle-ActivationPolicy: lazy</bnd> </configuration> </execution> </executions>