This is an automated email from the ASF dual-hosted git repository. rombert pushed a commit to branch issue/SLING-12943 in repository https://gitbox.apache.org/repos/asf/sling-ide-tooling.git
commit c5bf7cd94c90bb04ab0ffde8b82778b42bc56f72 Author: Robert Munteanu <[email protected]> AuthorDate: Fri Sep 19 15:07:46 2025 +0200 SLING-12943 - Stop bundling third party dependencies with the eclipse feature All dependencies are already included in recent Eclipse versions and this actually increases compatibility because our bundled plugins can not conflict anymore with that the runtime provides. --- eclipse/feature/feature.xml | 39 +++++---------------------------------- 1 file changed, 5 insertions(+), 34 deletions(-) diff --git a/eclipse/feature/feature.xml b/eclipse/feature/feature.xml index 4f78247b..8387a0f4 100644 --- a/eclipse/feature/feature.xml +++ b/eclipse/feature/feature.xml @@ -227,51 +227,22 @@ <plugin id="org.apache.sling.ide.api" - download-size="0" - install-size="0" - version="0.0.0" - unpack="false"/> + version="0.0.0"/> <plugin id="org.apache.sling.ide.eclipse-core" - download-size="0" - install-size="0" - version="0.0.0" - unpack="false"/> + version="0.0.0"/> <plugin id="org.apache.sling.ide.eclipse-ui" - download-size="0" - install-size="0" - version="0.0.0" - unpack="false"/> + version="0.0.0"/> <plugin id="org.apache.sling.ide.impl-vlt" - download-size="0" - install-size="0" - version="0.0.0" - unpack="false"/> + version="0.0.0"/> <plugin id="org.apache.sling.ide.artifacts" - download-size="0" - install-size="0" - version="0.0.0" - unpack="false"/> - - <plugin - id="com.google.gson" - download-size="0" - install-size="0" - version="0.0.0" - unpack="false"/> - - <plugin - id="org.apache.httpcomponents.httpclient" - download-size="0" - install-size="0" - version="0.0.0" - unpack="false"/> + version="0.0.0"/> </feature>
