mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-19 06:55:23 +02:00
[releng] Prepare TM 3.3.x builds
This commit is contained in:
parent
1962ef62c3
commit
c810eaa4c5
3 changed files with 138 additions and 61 deletions
|
@ -42,11 +42,13 @@ fi
|
||||||
|
|
||||||
# get newest plugins and features: to be done manually on real update site
|
# get newest plugins and features: to be done manually on real update site
|
||||||
TPVERSION="Target Management"
|
TPVERSION="Target Management"
|
||||||
VERSION=3.3
|
VERSION=3.3.x
|
||||||
DO_STATS=0
|
DO_STATS=0
|
||||||
DO_CATEGORIES=0
|
DO_CATEGORIES=0
|
||||||
TYPE=none
|
TYPE=none
|
||||||
SITEDIR=`basename ${SITE}`
|
SITEDIR=`basename ${SITE}`
|
||||||
|
SITEPARENT=`dirname ${SITE}`
|
||||||
|
SITEPARENT=`basename ${SITEPARENT}`
|
||||||
case ${SITEDIR} in
|
case ${SITEDIR} in
|
||||||
test*Updates) TYPE=test ;;
|
test*Updates) TYPE=test ;;
|
||||||
signed*Updates) TYPE=testSigned ;;
|
signed*Updates) TYPE=testSigned ;;
|
||||||
|
@ -62,6 +64,9 @@ case ${SITEDIR} in
|
||||||
3.2) DO_STATS=1 ;;
|
3.2) DO_STATS=1 ;;
|
||||||
3.3) DO_STATS=1 ;;
|
3.3) DO_STATS=1 ;;
|
||||||
esac
|
esac
|
||||||
|
case ${SITEPARENT} in
|
||||||
|
staging) SITEDIR=staging/${SITEDIR} ;;
|
||||||
|
esac
|
||||||
if [ ${TYPE} = test ]; then
|
if [ ${TYPE} = test ]; then
|
||||||
TPTYPE="${VERSION} Test"
|
TPTYPE="${VERSION} Test"
|
||||||
TPVERSION="${TPVERSION} ${TPTYPE}"
|
TPVERSION="${TPVERSION} ${TPTYPE}"
|
||||||
|
@ -78,12 +83,15 @@ if [ ${TYPE} = test ]; then
|
||||||
cp -R $DIR/plugins .
|
cp -R $DIR/plugins .
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
# CHECK VERSION CORRECTNESS for MICRO or MINOR UPDATES only
|
# CHECK VERSION CORRECTNESS for MICRO UPDATES only
|
||||||
# Major version updates are not allowed.
|
# Major version updates are not allowed.
|
||||||
# Update of "qualifier" requires also updating "micro" or "minor"
|
#MINOR_UPDATE_OK=1
|
||||||
echo "VERIFYING VERSION CORRECTNESS: Features against ../updates/3.2"
|
# Minor/major version updates are not allowed.
|
||||||
|
MINOR_UPDATE_OK=0
|
||||||
|
# Update of "qualifier" requires also updating "micro"
|
||||||
|
echo "VERIFYING VERSION CORRECTNESS: Features against ../updates/3.3"
|
||||||
ls features/*.jar | sed -e 's,^.*features/,,' | sort > f1.$$.txt
|
ls features/*.jar | sed -e 's,^.*features/,,' | sort > f1.$$.txt
|
||||||
ls ../updates/3.2/features/*.jar | sed -e 's,^.*features/,,' | sort > f2.$$.txt
|
ls ../updates/3.3/features/*.jar | sed -e 's,^.*features/,,' | sort > f2.$$.txt
|
||||||
diff f2.$$.txt f1.$$.txt | grep '^[>]' \
|
diff f2.$$.txt f1.$$.txt | grep '^[>]' \
|
||||||
| sed -e 's,[>] \(.*_[0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\)\..*,\1,' > f_new.txt
|
| sed -e 's,[>] \(.*_[0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\)\..*,\1,' > f_new.txt
|
||||||
for f in `cat f_new.txt`; do
|
for f in `cat f_new.txt`; do
|
||||||
|
@ -91,20 +99,25 @@ if [ ${TYPE} = test ]; then
|
||||||
if [ "${fold}" != "" ]; then
|
if [ "${fold}" != "" ]; then
|
||||||
echo "PROBLEM: QUALIFIER update without MICRO: ${f}"
|
echo "PROBLEM: QUALIFIER update without MICRO: ${f}"
|
||||||
fi
|
fi
|
||||||
#fbase=`echo $f | sed -e 's,\(.*_[0-9][0-9]*\.[0-9][0-9]*\)\..*,\1,'`
|
if [ "${MINOR_UPDATE_OK}" = "0" ]; then
|
||||||
#fold=`grep "${fbase}\." f2.$$.txt`
|
#allow MICRO updates only, but require QUALIFIER update
|
||||||
#if [ "${fold}" = "" ]; then
|
fbase=`echo $f | sed -e 's,\(.*_[0-9][0-9]*\.[0-9][0-9]*\)\..*,\1,'`
|
||||||
# echo "PROBLEM: MAJOR or MINOR update : ${f}"
|
fold=`grep "${fbase}\." f2.$$.txt`
|
||||||
#fi
|
if [ "${fold}" = "" ]; then
|
||||||
|
echo "PROBLEM: MAJOR or MINOR update : ${f}"
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
#allow MINOR or MICRO updates, but require QUALIFIER update
|
||||||
fbase=`echo $f | sed -e 's,\(.*_[0-9][0-9]*\)\.[0-9][0-9]*\..*,\1,'`
|
fbase=`echo $f | sed -e 's,\(.*_[0-9][0-9]*\)\.[0-9][0-9]*\..*,\1,'`
|
||||||
fold=`grep ${fbase} f2.$$.txt`
|
fold=`grep ${fbase} f2.$$.txt`
|
||||||
if [ "${fold}" = "" ]; then
|
if [ "${fold}" = "" ]; then
|
||||||
echo "PROBLEM: MAJOR update or NEW : ${f}"
|
echo "PROBLEM: MAJOR update or NEW : ${f}"
|
||||||
fi
|
fi
|
||||||
|
fi
|
||||||
done
|
done
|
||||||
echo "VERIFYING VERSION CORRECTNESS: Plugins against ../updates/3.2"
|
echo "VERIFYING VERSION CORRECTNESS: Plugins against ../updates/3.3"
|
||||||
ls plugins/*.jar | sed -e 's,^.*plugins/,,' | sort > p1.$$.txt
|
ls plugins/*.jar | sed -e 's,^.*plugins/,,' | sort > p1.$$.txt
|
||||||
ls ../updates/3.2/plugins/*.jar | sed -e 's,^.*plugins/,,' | sort > p2.$$.txt
|
ls ../updates/3.3/plugins/*.jar | sed -e 's,^.*plugins/,,' | sort > p2.$$.txt
|
||||||
diff p2.$$.txt p1.$$.txt | grep '^[>]' \
|
diff p2.$$.txt p1.$$.txt | grep '^[>]' \
|
||||||
| sed -e 's,[>] \(.*_[0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\)\..*,\1,' > p_new.txt
|
| sed -e 's,[>] \(.*_[0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\)\..*,\1,' > p_new.txt
|
||||||
for p in `cat p_new.txt`; do
|
for p in `cat p_new.txt`; do
|
||||||
|
@ -112,16 +125,21 @@ if [ ${TYPE} = test ]; then
|
||||||
if [ "${pold}" != "" ]; then
|
if [ "${pold}" != "" ]; then
|
||||||
echo "PROBLEM: QUALIFIER update without MICRO: ${p}"
|
echo "PROBLEM: QUALIFIER update without MICRO: ${p}"
|
||||||
fi
|
fi
|
||||||
#pbase=`echo $p | sed -e 's,\(.*_[0-9][0-9]*\.[0-9][0-9]*\)\..*,\1,'`
|
if [ "${MINOR_UPDATE_OK}" = "0" ]; then
|
||||||
#pold=`grep "${pbase}\." p2.$$.txt`
|
#allow MICRO updates only, but require QUALIFIER update
|
||||||
#if [ "${pold}" = "" ]; then
|
pbase=`echo $p | sed -e 's,\(.*_[0-9][0-9]*\.[0-9][0-9]*\)\..*,\1,'`
|
||||||
# echo "PROBLEM: MAJOR or MINOR update : ${p}"
|
pold=`grep "${pbase}\." p2.$$.txt`
|
||||||
#fi
|
if [ "${pold}" = "" ]; then
|
||||||
|
echo "PROBLEM: MAJOR or MINOR update : ${p}"
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
#allow MINOR or MICRO updates, but require QUALIFIER update
|
||||||
pbase=`echo $p | sed -e 's,\(.*_[0-9][0-9]*\)\.[0-9][0-9]*\..*,\1,'`
|
pbase=`echo $p | sed -e 's,\(.*_[0-9][0-9]*\)\.[0-9][0-9]*\..*,\1,'`
|
||||||
pold=`grep ${pbase} p2.$$.txt`
|
pold=`grep ${pbase} p2.$$.txt`
|
||||||
if [ "${pold}" = "" ]; then
|
if [ "${pold}" = "" ]; then
|
||||||
echo "PROBLEM: MAJOR update or NEW : ${p}"
|
echo "PROBLEM: MAJOR update or NEW : ${p}"
|
||||||
fi
|
fi
|
||||||
|
fi
|
||||||
done
|
done
|
||||||
#rm f_new.txt p_new.txt
|
#rm f_new.txt p_new.txt
|
||||||
mv -f f1.$$.txt fversions.txt
|
mv -f f1.$$.txt fversions.txt
|
||||||
|
@ -138,7 +156,7 @@ if [ ${TYPE} = test ]; then
|
||||||
sed -e "s,/tm/updates/2.0,/tm/${SITEDIR},g" \
|
sed -e "s,/tm/updates/2.0,/tm/${SITEDIR},g" \
|
||||||
-e "s,Project 2.0 Update,Project ${TPTYPE} Update,g" \
|
-e "s,Project 2.0 Update,Project ${TPTYPE} Update,g" \
|
||||||
-e '/<!-- BEGIN_2_0 -->/,/<!-- END_2_0_4 -->/d' \
|
-e '/<!-- BEGIN_2_0 -->/,/<!-- END_2_0_4 -->/d' \
|
||||||
-e '/<!-- BEGIN_3_0 -->/,/<!-- END_3_2 -->/d' \
|
-e '/<!-- BEGIN_3_0 -->/,/<!-- END_3_3 -->/d' \
|
||||||
site.xml > site.xml.new
|
site.xml > site.xml.new
|
||||||
mv -f site.xml.new site.xml
|
mv -f site.xml.new site.xml
|
||||||
sed -e "s,Project 2.0 Update,Project ${TPTYPE} Update,g" \
|
sed -e "s,Project 2.0 Update,Project ${TPTYPE} Update,g" \
|
||||||
|
@ -272,7 +290,7 @@ elif [ ${TYPE} = testSigned ]; then
|
||||||
sed -e "s,/tm/updates/2.0,/tm/${SITEDIR},g" \
|
sed -e "s,/tm/updates/2.0,/tm/${SITEDIR},g" \
|
||||||
-e "s,Project 2.0 Update,Project ${TPTYPE} Update,g" \
|
-e "s,Project 2.0 Update,Project ${TPTYPE} Update,g" \
|
||||||
-e '/<!-- BEGIN_2_0 -->/,/<!-- END_2_0_4 -->/d' \
|
-e '/<!-- BEGIN_2_0 -->/,/<!-- END_2_0_4 -->/d' \
|
||||||
-e '/<!-- BEGIN_3_0 -->/,/<!-- END_3_2 -->/d' \
|
-e '/<!-- BEGIN_3_0 -->/,/<!-- END_3_3 -->/d' \
|
||||||
site.xml > site.xml.new
|
site.xml > site.xml.new
|
||||||
mv -f site.xml.new site.xml
|
mv -f site.xml.new site.xml
|
||||||
sed -e "s,Project 2.0 Update,Project ${TPTYPE} Update,g" \
|
sed -e "s,Project 2.0 Update,Project ${TPTYPE} Update,g" \
|
||||||
|
@ -298,7 +316,7 @@ being contributed to the Eclipse Indigo coordinated release train (Eclipse 3.7.x
|
||||||
sed -e "s,/tm/updates/2.0,/tm/updates/${SITEDIR},g" \
|
sed -e "s,/tm/updates/2.0,/tm/updates/${SITEDIR},g" \
|
||||||
-e "s,Project 2.0 Update,Project ${TPTYPE} Update,g" \
|
-e "s,Project 2.0 Update,Project ${TPTYPE} Update,g" \
|
||||||
-e '/<!-- BEGIN_2_0 -->/,/<!-- END_2_0_4 -->/d' \
|
-e '/<!-- BEGIN_2_0 -->/,/<!-- END_2_0_4 -->/d' \
|
||||||
-e '/<!-- BEGIN_3_0 -->/,/<!-- END_3_2 -->/d' \
|
-e '/<!-- BEGIN_3_0 -->/,/<!-- END_3_3 -->/d' \
|
||||||
site.xml > site.xml.new
|
site.xml > site.xml.new
|
||||||
mv -f site.xml.new site.xml
|
mv -f site.xml.new site.xml
|
||||||
sed -e "s,Project 2.0 Update,Project ${TPTYPE} Update,g" \
|
sed -e "s,Project 2.0 Update,Project ${TPTYPE} Update,g" \
|
||||||
|
@ -324,7 +342,7 @@ to test them before going live.' \
|
||||||
sed -e "s,/tm/updates/2.0,/tm/updates/${SITEDIR},g" \
|
sed -e "s,/tm/updates/2.0,/tm/updates/${SITEDIR},g" \
|
||||||
-e "s,Project 2.0 Update,Project ${TPTYPE} Update,g" \
|
-e "s,Project 2.0 Update,Project ${TPTYPE} Update,g" \
|
||||||
-e '/<!-- BEGIN_2_0 -->/,/<!-- END_2_0_4 -->/d' \
|
-e '/<!-- BEGIN_2_0 -->/,/<!-- END_2_0_4 -->/d' \
|
||||||
-e '/<!-- BEGIN_3_0 -->/,/<!-- END_3_2 -->/d' \
|
-e '/<!-- BEGIN_3_0 -->/,/<!-- END_3_3 -->/d' \
|
||||||
site.xml > site.xml.new
|
site.xml > site.xml.new
|
||||||
mv -f site.xml.new site.xml
|
mv -f site.xml.new site.xml
|
||||||
sed -e "s,Project 2.0 Update,Project ${TPTYPE} Update,g" \
|
sed -e "s,Project 2.0 Update,Project ${TPTYPE} Update,g" \
|
||||||
|
@ -404,6 +422,7 @@ being contributed to the Eclipse Helios coordinated release train (Eclipse 3.6.x
|
||||||
sed -e "s,/tm/updates/2.0,/tm/updates/${SITEDIR},g" \
|
sed -e "s,/tm/updates/2.0,/tm/updates/${SITEDIR},g" \
|
||||||
-e "s,Project 2.0 Update,Project ${TPTYPE} Update,g" \
|
-e "s,Project 2.0 Update,Project ${TPTYPE} Update,g" \
|
||||||
-e '/<!-- BEGIN_2_0 -->/,/<!-- BEGIN_3_2 -->/d' \
|
-e '/<!-- BEGIN_2_0 -->/,/<!-- BEGIN_3_2 -->/d' \
|
||||||
|
-e '/<!-- BEGIN_3_3 -->/,/<!-- END_ALL -->/d' \
|
||||||
site.xml > site.xml.new
|
site.xml > site.xml.new
|
||||||
mv -f site.xml.new site.xml
|
mv -f site.xml.new site.xml
|
||||||
sed -e "s,Project 2.0 Update,Project ${TPTYPE} Update,g" \
|
sed -e "s,Project 2.0 Update,Project ${TPTYPE} Update,g" \
|
||||||
|
@ -527,7 +546,7 @@ if [ x${DO_STATS} = x1 ]; then
|
||||||
-p2.statsURI http://download.eclipse.org/stats/tm \
|
-p2.statsURI http://download.eclipse.org/stats/tm \
|
||||||
-p2.statsTrackedFeatures org.eclipse.rse.sdk,org.eclipse.rse.dstore,org.eclipse.rse.core,org.eclipse.rse.useractions,org.eclipse.rse.examples,org.eclipse.rse.tests,org.eclipse.rse.wince,org.eclipse.tm.terminal.view,org.eclipse.tm.terminal.local \
|
-p2.statsTrackedFeatures org.eclipse.rse.sdk,org.eclipse.rse.dstore,org.eclipse.rse.core,org.eclipse.rse.useractions,org.eclipse.rse.examples,org.eclipse.rse.tests,org.eclipse.rse.wince,org.eclipse.tm.terminal.view,org.eclipse.tm.terminal.local \
|
||||||
-p2.statsTrackedBundles org.eclipse.rse.core,org.eclipse.rse.core.source,org.eclipse.tm.terminal \
|
-p2.statsTrackedBundles org.eclipse.rse.core,org.eclipse.rse.core.source,org.eclipse.tm.terminal \
|
||||||
-p2.statsSuffix _tm330
|
-p2.statsSuffix _tm331
|
||||||
-vmargs -Xmx256M"
|
-vmargs -Xmx256M"
|
||||||
echo $CMD
|
echo $CMD
|
||||||
$CMD
|
$CMD
|
||||||
|
@ -554,7 +573,7 @@ else
|
||||||
echo "result: ${result}"
|
echo "result: ${result}"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ x${DO_CATEGORIES} = x1 ]; then
|
if [ x${DO_CATEGORIES} = x1 ]; then
|
||||||
echo "Adding Categories..."
|
echo "Adding Categories..."
|
||||||
CMD="java -jar ${tgtlauncher} \
|
CMD="java -jar ${tgtlauncher} \
|
||||||
-application org.eclipse.equinox.p2.publisher.CategoryPublisher \
|
-application org.eclipse.equinox.p2.publisher.CategoryPublisher \
|
||||||
|
|
|
@ -1,38 +1,38 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<site>
|
<site>
|
||||||
<feature url="features/org.eclipse.rse_3.3.0.qualifier.jar" id="org.eclipse.rse" version="3.3.0.qualifier">
|
<feature url="features/org.eclipse.rse_3.3.0.qualifier.jar" id="org.eclipse.rse" version="3.3.0.qualifier">
|
||||||
<category name="tm_33_main"/>
|
<category name="tm_331_main"/>
|
||||||
</feature>
|
</feature>
|
||||||
<feature url="features/org.eclipse.rse.sdk_3.3.0.qualifier.jar" id="org.eclipse.rse.sdk" version="3.3.0.qualifier">
|
<feature url="features/org.eclipse.rse.sdk_3.3.0.qualifier.jar" id="org.eclipse.rse.sdk" version="3.3.0.qualifier">
|
||||||
<category name="tm_33_main"/>
|
<category name="tm_331_main"/>
|
||||||
</feature>
|
</feature>
|
||||||
<feature url="features/org.eclipse.rse.useractions_1.1.300.qualifier.jar" id="org.eclipse.rse.useractions" version="1.1.300.qualifier">
|
<feature url="features/org.eclipse.rse.useractions_1.1.300.qualifier.jar" id="org.eclipse.rse.useractions" version="1.1.300.qualifier">
|
||||||
<category name="tm_33_main"/>
|
<category name="tm_331_main"/>
|
||||||
</feature>
|
</feature>
|
||||||
<feature url="features/org.eclipse.rse.examples_3.1.200.qualifier.jar" id="org.eclipse.rse.examples" version="3.1.200.qualifier">
|
<feature url="features/org.eclipse.rse.examples_3.1.200.qualifier.jar" id="org.eclipse.rse.examples" version="3.1.200.qualifier">
|
||||||
<category name="tm_33_optional"/>
|
<category name="tm_331_optional"/>
|
||||||
</feature>
|
</feature>
|
||||||
<feature url="features/org.eclipse.rse.scp_0.1.0.qualifier.jar" id="org.eclipse.rse.scp" version="0.1.0.qualifier">
|
<feature url="features/org.eclipse.rse.scp_0.1.0.qualifier.jar" id="org.eclipse.rse.scp" version="0.1.0.qualifier">
|
||||||
<category name="tm_33_optional"/>
|
<category name="tm_331_optional"/>
|
||||||
</feature>
|
</feature>
|
||||||
<feature url="features/org.eclipse.rse.tests_3.3.0.qualifier.jar" id="org.eclipse.rse.tests" version="3.3.0.qualifier">
|
<feature url="features/org.eclipse.rse.tests_3.3.0.qualifier.jar" id="org.eclipse.rse.tests" version="3.3.0.qualifier">
|
||||||
<category name="tm_33_optional"/>
|
<category name="tm_331_optional"/>
|
||||||
</feature>
|
</feature>
|
||||||
<feature url="features/org.eclipse.rse.wince_0.3.0.qualifier.jar" id="org.eclipse.rse.wince" version="0.3.0.qualifier">
|
<feature url="features/org.eclipse.rse.wince_0.3.0.qualifier.jar" id="org.eclipse.rse.wince" version="0.3.0.qualifier">
|
||||||
<category name="tm_33_optional"/>
|
<category name="tm_331_optional"/>
|
||||||
</feature>
|
</feature>
|
||||||
<feature url="features/org.eclipse.tm.terminal.local.sdk_0.2.0.qualifier.jar" id="org.eclipse.tm.terminal.local.sdk" version="0.2.0.qualifier">
|
<feature url="features/org.eclipse.tm.terminal.local.sdk_0.2.0.qualifier.jar" id="org.eclipse.tm.terminal.local.sdk" version="0.2.0.qualifier">
|
||||||
<category name="tm_33_optional"/>
|
<category name="tm_331_optional"/>
|
||||||
</feature>
|
</feature>
|
||||||
<feature url="features/org.eclipse.tm.terminal.sdk_3.2.0.qualifier.jar" id="org.eclipse.tm.terminal.sdk" version="3.2.0.qualifier">
|
<feature url="features/org.eclipse.tm.terminal.sdk_3.2.0.qualifier.jar" id="org.eclipse.tm.terminal.sdk" version="3.2.0.qualifier">
|
||||||
<category name="tm_33_main"/>
|
<category name="tm_331_main"/>
|
||||||
</feature>
|
</feature>
|
||||||
<category-def name="tm_33_main" label="TM and RSE Main Features">
|
<category-def name="tm_331_main" label="TM and RSE 3.3.1 Main Features">
|
||||||
<description>
|
<description>
|
||||||
TM and RSE Main Features
|
TM and RSE Main Features
|
||||||
</description>
|
</description>
|
||||||
</category-def>
|
</category-def>
|
||||||
<category-def name="tm_33_optional" label="TM and RSE Optional Add-Ons">
|
<category-def name="tm_331_optional" label="TM and RSE 3.3.1 Optional Add-Ons">
|
||||||
<description>
|
<description>
|
||||||
Examples, Tests and Incubation Plug-ins.
|
Examples, Tests and Incubation Plug-ins.
|
||||||
</description>
|
</description>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<!--
|
<!--
|
||||||
Copyright (c) 2006, 2010 Wind River Systems, Inc. and others.
|
Copyright (c) 2006, 2011 Wind River Systems, Inc. and others.
|
||||||
All rights reserved. This program and the accompanying materials
|
All rights reserved. This program and the accompanying materials
|
||||||
are made available under the terms of the Eclipse Public License v1.0
|
are made available under the terms of the Eclipse Public License v1.0
|
||||||
which accompanies this distribution, and is available at
|
which accompanies this distribution, and is available at
|
||||||
|
@ -688,62 +688,120 @@
|
||||||
</category-def>
|
</category-def>
|
||||||
<!-- END_3_2 -->
|
<!-- END_3_2 -->
|
||||||
<!-- BEGIN_3_3 -->
|
<!-- BEGIN_3_3 -->
|
||||||
<feature url="features/org.eclipse.rse.core_3.3.0.qualifier.jar" id="org.eclipse.rse.core" version="3.3.0.qualifier">
|
<feature url="features/org.eclipse.rse.core_3.3.0.v201106011538-7a7JFYwFC7sReeS7d5k9KA.jar" id="org.eclipse.rse.core" version="3.3.0.v201106011538-7a7JFYwFC7sReeS7d5k9KA">
|
||||||
<category name="TM and RSE Uncategorized 3.3"/>
|
<category name="TM and RSE Uncategorized 3.3"/>
|
||||||
</feature>
|
</feature>
|
||||||
<feature url="features/org.eclipse.rse.dstore_3.3.0.qualifier.jar" id="org.eclipse.rse.dstore" version="3.3.0.qualifier">
|
<feature url="features/org.eclipse.rse.dstore_3.3.0.v201106011538-7L78FR7EVVFNNFaMdQf_h.jar" id="org.eclipse.rse.dstore" version="3.3.0.v201106011538-7L78FR7EVVFNNFaMdQf_h">
|
||||||
<category name="TM and RSE Uncategorized 3.3"/>
|
<category name="TM and RSE Uncategorized 3.3"/>
|
||||||
</feature>
|
</feature>
|
||||||
<feature url="features/org.eclipse.rse.ftp_3.0.300.qualifier.jar" id="org.eclipse.rse.ftp" version="3.0.300.qualifier">
|
<feature url="features/org.eclipse.rse.ftp_3.0.300.v201106011538-782F8N9oB588587HAFII.jar" id="org.eclipse.rse.ftp" version="3.0.300.v201106011538-782F8N9oB588587HAFII">
|
||||||
<category name="TM and RSE Uncategorized 3.3"/>
|
<category name="TM and RSE Uncategorized 3.3"/>
|
||||||
</feature>
|
</feature>
|
||||||
<feature url="features/org.eclipse.rse.local_2.1.300.qualifier.jar" id="org.eclipse.rse.local" version="2.1.300.qualifier">
|
<feature url="features/org.eclipse.rse.local_2.1.300.v201103142315-7B4FKsBgJ9EE9ICQIFYT.jar" id="org.eclipse.rse.local" version="2.1.300.v201103142315-7B4FKsBgJ9EE9ICQIFYT">
|
||||||
<category name="TM and RSE Uncategorized 3.3"/>
|
<category name="TM and RSE Uncategorized 3.3"/>
|
||||||
</feature>
|
</feature>
|
||||||
<feature url="features/org.eclipse.rse_3.3.0.qualifier.jar" id="org.eclipse.rse" version="3.3.0.qualifier">
|
<feature url="features/org.eclipse.rse_3.3.0.v201106081330-7L7CFGB8wqio7ppp-b5xx29Eb0hQ.jar" id="org.eclipse.rse" version="3.3.0.v201106081330-7L7CFGB8wqio7ppp-b5xx29Eb0hQ">
|
||||||
<category name="TM and RSE Uncategorized 3.3"/>
|
<category name="TM and RSE Uncategorized 3.3"/>
|
||||||
</feature>
|
</feature>
|
||||||
<feature url="features/org.eclipse.rse.sdk_3.3.0.qualifier.jar" id="org.eclipse.rse.sdk" version="3.3.0.qualifier">
|
<feature url="features/org.eclipse.rse.sdk_3.3.0.v201106081330-7U7LFGBF8Wz-Sgjb9ViO_fNyqbiN.jar" id="org.eclipse.rse.sdk" version="3.3.0.v201106081330-7U7LFGBF8Wz-Sgjb9ViO_fNyqbiN">
|
||||||
<category name="TM and RSE Uncategorized 3.3"/>
|
<category name="TM and RSE Uncategorized 3.3"/>
|
||||||
</feature>
|
</feature>
|
||||||
<feature url="features/org.eclipse.rse.ssh_3.0.300.qualifier.jar" id="org.eclipse.rse.ssh" version="3.0.300.qualifier">
|
<feature url="features/org.eclipse.rse.ssh_3.0.300.v201106011538-7A3F9wAkF7BB7FAKECRM.jar" id="org.eclipse.rse.ssh" version="3.0.300.v201106011538-7A3F9wAkF7BB7FAKECRM">
|
||||||
<category name="TM and RSE Uncategorized 3.3"/>
|
<category name="TM and RSE Uncategorized 3.3"/>
|
||||||
</feature>
|
</feature>
|
||||||
<feature url="features/org.eclipse.rse.telnet_2.2.200.qualifier.jar" id="org.eclipse.rse.telnet" version="2.2.200.qualifier">
|
<feature url="features/org.eclipse.rse.telnet_2.2.200.v201106011538-775F8NAkF7BB7B9NEIPP.jar" id="org.eclipse.rse.telnet" version="2.2.200.v201106011538-775F8NAkF7BB7B9NEIPP">
|
||||||
<category name="TM and RSE Uncategorized 3.3"/>
|
<category name="TM and RSE Uncategorized 3.3"/>
|
||||||
</feature>
|
</feature>
|
||||||
<feature url="features/org.eclipse.rse.examples_3.1.200.qualifier.jar" id="org.eclipse.rse.examples" version="3.1.200.qualifier">
|
<feature url="features/org.eclipse.rse.examples_3.1.200.v201103142315-7B5FBVAkF7BB7B7NFBRR.jar" id="org.eclipse.rse.examples" version="3.1.200.v201103142315-7B5FBVAkF7BB7B7NFBRR">
|
||||||
<category name="TM and RSE Uncategorized 3.3"/>
|
<category name="TM and RSE Uncategorized 3.3"/>
|
||||||
</feature>
|
</feature>
|
||||||
<feature url="features/org.eclipse.rse.terminals_1.1.0.qualifier.jar" id="org.eclipse.rse.terminals" version="1.1.0.qualifier">
|
<feature url="features/org.eclipse.rse.terminals_1.1.0.v201106081330-771Bg9uD6I4AB9LEHNV3552.jar" id="org.eclipse.rse.terminals" version="1.1.0.v201106081330-771Bg9uD6I4AB9LEHNV3552">
|
||||||
<category name="TM and RSE Uncategorized 3.3"/>
|
<category name="TM and RSE Uncategorized 3.3"/>
|
||||||
</feature>
|
</feature>
|
||||||
<feature url="features/org.eclipse.rse.tests_3.3.0.qualifier.jar" id="org.eclipse.rse.tests" version="3.3.0.qualifier">
|
<feature url="features/org.eclipse.rse.tests_3.3.0.v201106011538-7H7CA7AkF7BB7JDHDDRH.jar" id="org.eclipse.rse.tests" version="3.3.0.v201106011538-7H7CA7AkF7BB7JDHDDRH">
|
||||||
<category name="TM and RSE Uncategorized 3.3"/>
|
<category name="TM and RSE Uncategorized 3.3"/>
|
||||||
</feature>
|
</feature>
|
||||||
<feature url="features/org.eclipse.rse.useractions_1.1.300.qualifier.jar" id="org.eclipse.rse.useractions" version="1.1.300.qualifier">
|
<feature url="features/org.eclipse.rse.useractions_1.1.300.v201103142315-31F8N8s7355353B75DD.jar" id="org.eclipse.rse.useractions" version="1.1.300.v201103142315-31F8N8s7355353B75DD">
|
||||||
<category name="TM and RSE Uncategorized 3.3"/>
|
<category name="TM and RSE Uncategorized 3.3"/>
|
||||||
</feature>
|
</feature>
|
||||||
<feature url="features/org.eclipse.rse.scp_0.1.0.qualifier.jar" id="org.eclipse.rse.scp" version="0.1.0.qualifier">
|
<feature url="features/org.eclipse.rse.scp_0.1.0.v201103142315-11-8s735537353L55.jar" id="org.eclipse.rse.scp" version="0.1.0.v201103142315-11-8s735537353L55">
|
||||||
<category name="TM and RSE Uncategorized 3.3"/>
|
<category name="TM and RSE Uncategorized 3.3"/>
|
||||||
</feature>
|
</feature>
|
||||||
<feature url="features/org.eclipse.rse.wince_0.3.0.qualifier.jar" id="org.eclipse.rse.wince" version="0.3.0.qualifier" os="win32" arch="x86">
|
<feature url="features/org.eclipse.rse.wince_0.3.0.v201105021534-15FEcAkF7BB7B7NFBRR.jar" id="org.eclipse.rse.wince" version="0.3.0.v201105021534-15FEcAkF7BB7B7NFBRR" os="win32" arch="x86">
|
||||||
<category name="TM and RSE Uncategorized 3.3"/>
|
<category name="TM and RSE Uncategorized 3.3"/>
|
||||||
</feature>
|
</feature>
|
||||||
<feature url="features/org.eclipse.tm.terminal.sdk_3.2.0.qualifier.jar" id="org.eclipse.tm.terminal.sdk" version="3.2.0.qualifier">
|
<feature url="features/org.eclipse.tm.terminal.sdk_3.2.0.v201106081330-7N7B-C5UEz0wYaUnVrdyLVTU.jar" id="org.eclipse.tm.terminal.sdk" version="3.2.0.v201106081330-7N7B-C5UEz0wYaUnVrdyLVTU">
|
||||||
<category name="TM and RSE Uncategorized 3.3"/>
|
<category name="TM and RSE Uncategorized 3.3"/>
|
||||||
</feature>
|
</feature>
|
||||||
<feature url="features/org.eclipse.tm.terminal.local_0.2.0.qualifier.jar" id="org.eclipse.tm.terminal.local" version="0.2.0.qualifier" os="linux,macosx,solaris">
|
<feature url="features/org.eclipse.tm.terminal.local_0.2.0.v201103142315-11-7w312212153266.jar" id="org.eclipse.tm.terminal.local" version="0.2.0.v201103142315-11-7w312212153266" os="linux,macosx,solaris">
|
||||||
<category name="TM and RSE Uncategorized 3.3"/>
|
<category name="TM and RSE Uncategorized 3.3"/>
|
||||||
</feature>
|
</feature>
|
||||||
<feature url="features/org.eclipse.tm.terminal.local.sdk_0.2.0.qualifier.jar" id="org.eclipse.tm.terminal.local.sdk" version="0.2.0.qualifier" os="linux,macosx,solaris">
|
<feature url="features/org.eclipse.tm.terminal.local.sdk_0.2.0.v201106081330-66-89B4VsGBDHCLGVDFHI.jar" id="org.eclipse.tm.terminal.local.sdk" version="0.2.0.v201106081330-66-89B4VsGBDHCLGVDFHI" os="linux,macosx,solaris">
|
||||||
<category name="TM and RSE Uncategorized 3.3"/>
|
<category name="TM and RSE Uncategorized 3.3"/>
|
||||||
</feature>
|
</feature>
|
||||||
<category-def name="TM and RSE Uncategorized 3.3" label="TM and RSE Uncategorized 3.3">
|
<category-def name="TM and RSE Uncategorized 3.3" label="TM and RSE Uncategorized 3.3">
|
||||||
<description>
|
<description>
|
||||||
Features and add-ons of the 3.2 release of Target Management / RSE.
|
Features and add-ons of the 3.3 release of Target Management / RSE.
|
||||||
</description>
|
</description>
|
||||||
</category-def>
|
</category-def>
|
||||||
<!-- END_3_3 -->
|
<!-- END_3_3 -->
|
||||||
|
<!-- BEGIN_3_3_1 -->
|
||||||
|
<feature url="features/org.eclipse.rse.core_3.3.0.qualifier.jar" id="org.eclipse.rse.core" version="3.3.0.qualifier">
|
||||||
|
<category name="TM and RSE Uncategorized 3.3.1"/>
|
||||||
|
</feature>
|
||||||
|
<feature url="features/org.eclipse.rse.dstore_3.3.0.qualifier.jar" id="org.eclipse.rse.dstore" version="3.3.0.qualifier">
|
||||||
|
<category name="TM and RSE Uncategorized 3.3.1"/>
|
||||||
|
</feature>
|
||||||
|
<feature url="features/org.eclipse.rse.ftp_3.0.300.qualifier.jar" id="org.eclipse.rse.ftp" version="3.0.300.qualifier">
|
||||||
|
<category name="TM and RSE Uncategorized 3.3.1"/>
|
||||||
|
</feature>
|
||||||
|
<feature url="features/org.eclipse.rse.local_2.1.300.qualifier.jar" id="org.eclipse.rse.local" version="2.1.300.qualifier">
|
||||||
|
<category name="TM and RSE Uncategorized 3.3.1"/>
|
||||||
|
</feature>
|
||||||
|
<feature url="features/org.eclipse.rse_3.3.0.qualifier.jar" id="org.eclipse.rse" version="3.3.0.qualifier">
|
||||||
|
<category name="TM and RSE Uncategorized 3.3.1"/>
|
||||||
|
</feature>
|
||||||
|
<feature url="features/org.eclipse.rse.sdk_3.3.0.qualifier.jar" id="org.eclipse.rse.sdk" version="3.3.0.qualifier">
|
||||||
|
<category name="TM and RSE Uncategorized 3.3.1"/>
|
||||||
|
</feature>
|
||||||
|
<feature url="features/org.eclipse.rse.ssh_3.0.300.qualifier.jar" id="org.eclipse.rse.ssh" version="3.0.300.qualifier">
|
||||||
|
<category name="TM and RSE Uncategorized 3.3.1"/>
|
||||||
|
</feature>
|
||||||
|
<feature url="features/org.eclipse.rse.telnet_2.2.200.qualifier.jar" id="org.eclipse.rse.telnet" version="2.2.200.qualifier">
|
||||||
|
<category name="TM and RSE Uncategorized 3.3.1"/>
|
||||||
|
</feature>
|
||||||
|
<feature url="features/org.eclipse.rse.examples_3.1.200.qualifier.jar" id="org.eclipse.rse.examples" version="3.1.200.qualifier">
|
||||||
|
<category name="TM and RSE Uncategorized 3.3.1"/>
|
||||||
|
</feature>
|
||||||
|
<feature url="features/org.eclipse.rse.terminals_1.1.0.qualifier.jar" id="org.eclipse.rse.terminals" version="1.1.0.qualifier">
|
||||||
|
<category name="TM and RSE Uncategorized 3.3.1"/>
|
||||||
|
</feature>
|
||||||
|
<feature url="features/org.eclipse.rse.tests_3.3.0.qualifier.jar" id="org.eclipse.rse.tests" version="3.3.0.qualifier">
|
||||||
|
<category name="TM and RSE Uncategorized 3.3.1"/>
|
||||||
|
</feature>
|
||||||
|
<feature url="features/org.eclipse.rse.useractions_1.1.300.qualifier.jar" id="org.eclipse.rse.useractions" version="1.1.300.qualifier">
|
||||||
|
<category name="TM and RSE Uncategorized 3.3.1"/>
|
||||||
|
</feature>
|
||||||
|
<feature url="features/org.eclipse.rse.scp_0.1.0.qualifier.jar" id="org.eclipse.rse.scp" version="0.1.0.qualifier">
|
||||||
|
<category name="TM and RSE Uncategorized 3.3.1"/>
|
||||||
|
</feature>
|
||||||
|
<feature url="features/org.eclipse.rse.wince_0.3.0.qualifier.jar" id="org.eclipse.rse.wince" version="0.3.0.qualifier" os="win32" arch="x86">
|
||||||
|
<category name="TM and RSE Uncategorized 3.3.1"/>
|
||||||
|
</feature>
|
||||||
|
<feature url="features/org.eclipse.tm.terminal.sdk_3.2.0.qualifier.jar" id="org.eclipse.tm.terminal.sdk" version="3.2.0.qualifier">
|
||||||
|
<category name="TM and RSE Uncategorized 3.3.1"/>
|
||||||
|
</feature>
|
||||||
|
<feature url="features/org.eclipse.tm.terminal.local_0.2.0.qualifier.jar" id="org.eclipse.tm.terminal.local" version="0.2.0.qualifier" os="linux,macosx,solaris">
|
||||||
|
<category name="TM and RSE Uncategorized 3.3.1"/>
|
||||||
|
</feature>
|
||||||
|
<feature url="features/org.eclipse.tm.terminal.local.sdk_0.2.0.qualifier.jar" id="org.eclipse.tm.terminal.local.sdk" version="0.2.0.qualifier" os="linux,macosx,solaris">
|
||||||
|
<category name="TM and RSE Uncategorized 3.3.1"/>
|
||||||
|
</feature>
|
||||||
|
<category-def name="TM and RSE Uncategorized 3.3.1" label="TM and RSE Uncategorized 3.3.1">
|
||||||
|
<description>
|
||||||
|
Features and add-ons of the 3.3.1 release of Target Management / RSE.
|
||||||
|
</description>
|
||||||
|
</category-def>
|
||||||
|
<!-- END_3_3_1 -->
|
||||||
<!-- END_ALL -->
|
<!-- END_ALL -->
|
||||||
</site>
|
</site>
|
||||||
|
|
Loading…
Add table
Reference in a new issue