1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-30 20:35:38 +02:00

Cleanup terminal telnet feature and migrate to platform

This commit is contained in:
Christoph Läubrich 2025-07-24 15:12:38 +02:00 committed by Alexander Fedorov
parent c8347e66f6
commit 7f8746b12b
2 changed files with 6 additions and 7 deletions

View file

@ -35,6 +35,11 @@ git ls-files -- \*/feature.xml | while read feature_xml; do
continue; continue;
fi fi
if [ "$plugin" == 'org.eclipse.tm.terminal.connector.telnet.feature' ]; then
# this never contained about mappings and we moved the plugin to platform that does not contain mappings as well
continue;
fi
feature_dir=$(dirname ${feature_xml}) feature_dir=$(dirname ${feature_xml})
if [ $(find * -name $plugin -type d -not -path */target/* | wc -l) -ne 1 ]; then if [ $(find * -name $plugin -type d -not -path */target/* | wc -l) -ne 1 ]; then

View file

@ -33,13 +33,7 @@
</license> </license>
<requires> <requires>
<import plugin="org.eclipse.tm.terminal.control"/> <import plugin="org.eclipse.terminal.connector.telnet" />
<import feature="org.eclipse.tm.terminal.control.feature"/>
<import plugin="org.eclipse.core.expressions" version="3.4.400" match="greaterOrEqual"/>
<import plugin="org.eclipse.core.runtime" version="3.8.0" match="greaterOrEqual"/>
<import plugin="org.eclipse.equinox.security" version="1.1.100" match="greaterOrEqual"/>
<import plugin="org.eclipse.ui" version="3.8.0" match="greaterOrEqual"/>
<import plugin="org.eclipse.tm.terminal.connector.telnet" version="4.8.0" match="greaterOrEqual"/>
</requires> </requires>
</feature> </feature>