Skip to content

Commit 06084c9

Browse files
laeubiruspl-afed
authored andcommitted
Cleanup remaining terminal features
1 parent 24fdda2 commit 06084c9

File tree

4 files changed

+14
-13
lines changed

4 files changed

+14
-13
lines changed

releng/scripts/check_features.sh

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,8 @@ git ls-files -- \*/feature.xml | while read feature_xml; do
2424
plugin=$(xmllint --xpath 'string(//feature/@id)' $feature_xml)
2525
fi
2626

27-
if [ "$plugin" == 'org.eclipse.tm.terminal.control' ]; then
28-
# As part of https://github.com/eclipse-cdt/cdt/pull/1166 this bundle
29-
# was moved to Eclipse platform, so we cannot run these checks.
27+
if [ "$plugin" == 'org.eclipse.tm.terminal.control.feature' ]; then
28+
# this never contained about mappings and we moved the plugin to platform that does not contain mappings as well
3029
continue;
3130
fi
3231

@@ -39,6 +38,16 @@ git ls-files -- \*/feature.xml | while read feature_xml; do
3938
# this never contained about mappings and we moved the plugin to platform that does not contain mappings as well
4039
continue;
4140
fi
41+
42+
if [ "$plugin" == 'org.eclipse.tm.terminal.feature' ]; then
43+
# this never contained about mappings and we moved the plugin to platform that does not contain mappings as well
44+
continue;
45+
fi
46+
47+
if [ "$plugin" == 'org.eclipse.tm.terminal.view.feature' ]; then
48+
# this never contained about mappings and we moved the plugin to platform that does not contain mappings as well
49+
continue;
50+
fi
4251

4352
feature_dir=$(dirname ${feature_xml})
4453

terminal/features/org.eclipse.tm.terminal.control.feature/feature.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
label="%featureName"
1919
version="12.2.0.qualifier"
2020
provider-name="%providerName"
21-
plugin="org.eclipse.tm.terminal.control"
2221
license-feature="org.eclipse.license"
2322
license-feature-version="0.0.0">
2423

terminal/features/org.eclipse.tm.terminal.feature/feature.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
label="%featureName"
1414
version="12.2.0.qualifier"
1515
provider-name="%providerName"
16-
plugin="org.eclipse.tm.terminal.view.core"
1716
license-feature="org.eclipse.license"
1817
license-feature-version="0.0.0">
1918

terminal/features/org.eclipse.tm.terminal.view.feature/feature.xml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
label="%featureName"
1414
version="12.2.0.qualifier"
1515
provider-name="%providerName"
16-
plugin="org.eclipse.tm.terminal.view.ui"
1716
license-feature="org.eclipse.license"
1817
license-feature-version="0.0.0">
1918

@@ -30,13 +29,8 @@
3029
</license>
3130

3231
<requires>
33-
<import plugin="org.eclipse.core.expressions" version="3.4.400" match="greaterOrEqual"/>
34-
<import plugin="org.eclipse.core.runtime" version="3.8.0" match="greaterOrEqual"/>
35-
<import plugin="org.eclipse.ui" version="3.8.0" match="greaterOrEqual"/>
36-
<import plugin="org.eclipse.core.variables" version="3.2.600" match="greaterOrEqual"/>
37-
<import plugin="org.eclipse.tm.terminal.view.core" version="4.8.0" match="compatible"/>
38-
<import plugin="org.eclipse.tm.terminal.view.ui" version="4.11.0" match="compatible"/>
39-
<import plugin="org.eclipse.tm.terminal.control" version="5.2.0" match="compatible"/>
32+
<import plugin="org.eclipse.terminal.view.core" />
33+
<import plugin="org.eclipse.terminal.view.ui" />
4034
</requires>
4135

4236
</feature>

0 commit comments

Comments
 (0)