mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-09-01 20:53:12 +02:00
[releng] Prepare Update Site for 3.1
This commit is contained in:
parent
e1fc0e2e89
commit
7c1cf7e9c0
2 changed files with 120 additions and 47 deletions
|
@ -39,10 +39,20 @@ if [ -f web/site.xsl.new ]; then
|
||||||
fi
|
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"
|
||||||
TYPE=none
|
TYPE=none
|
||||||
if [ `basename $SITE` = testUpdates ]; then
|
SITEDIR=`basename ${SITE}`
|
||||||
|
case ${SITEDIR} in
|
||||||
|
test*Updates) TYPE=test ;;
|
||||||
|
signed*Updates) TYPE=testSigned ;;
|
||||||
|
*milestones) TYPE=milestone ;;
|
||||||
|
*interim) TYPE=interim ;;
|
||||||
|
*) TYPE=unknown ;;
|
||||||
|
esac
|
||||||
|
if [ ${TYPE} = test ]; then
|
||||||
echo "Working on test update site"
|
echo "Working on test update site"
|
||||||
TYPE=test
|
TPTYPE="3.1 Test"
|
||||||
|
TPVERSION="${TPVERSION} ${TPTYPE}"
|
||||||
REL=`ls $HOME/ws2/working/package | sort | tail -1`
|
REL=`ls $HOME/ws2/working/package | sort | tail -1`
|
||||||
if [ "$REL" != "" ]; then
|
if [ "$REL" != "" ]; then
|
||||||
echo "Checking new Updates from $REL"
|
echo "Checking new Updates from $REL"
|
||||||
|
@ -57,17 +67,17 @@ if [ `basename $SITE` = testUpdates ]; then
|
||||||
fi
|
fi
|
||||||
rm index.html site.xml web/site.xsl
|
rm index.html site.xml web/site.xsl
|
||||||
cvs -q update -dPR
|
cvs -q update -dPR
|
||||||
sed -e 's,/dsdp/tm/updates/2.0,/dsdp/tm/testUpdates,g' \
|
sed -e "s,/dsdp/tm/updates/2.0,/dsdp/tm/${SITEDIR},g" \
|
||||||
-e 's,Project 2.0 Update,Project Test Update,g' \
|
-e "s,Project 2.0 Update,Project ${TPTYPE} Update,g" \
|
||||||
index.html > index.html.new
|
index.html > index.html.new
|
||||||
mv -f index.html.new index.html
|
mv -f index.html.new index.html
|
||||||
sed -e 's,/dsdp/tm/updates/2.0,/dsdp/tm/testUpdates,g' \
|
sed -e "s,/dsdp/tm/updates/2.0,/dsdp/tm/${SITEDIR},g" \
|
||||||
-e 's,Project 2.0 Update,Project Test 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_0 -->/d' \
|
-e '/<!-- BEGIN_3_0 -->/,/<!-- END_3_0_1 -->/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 Test Update,g' \
|
sed -e "s,Project 2.0 Update,Project ${TPTYPE} Update,g" \
|
||||||
web/site.xsl > web/site.xsl.new
|
web/site.xsl > web/site.xsl.new
|
||||||
mv -f web/site.xsl.new web/site.xsl
|
mv -f web/site.xsl.new web/site.xsl
|
||||||
echo "Conditioning the site... $SITE"
|
echo "Conditioning the site... $SITE"
|
||||||
|
@ -81,9 +91,10 @@ if [ `basename $SITE` = testUpdates ]; then
|
||||||
#java -Dorg.eclipse.update.jarprocessor.pack200=$mydir \
|
#java -Dorg.eclipse.update.jarprocessor.pack200=$mydir \
|
||||||
# $HOME/ws2/jarprocessor/jarprocessor.jar \
|
# $HOME/ws2/jarprocessor/jarprocessor.jar \
|
||||||
# -outputDir $SITE -processAll -repack $SITE
|
# -outputDir $SITE -processAll -repack $SITE
|
||||||
elif [ `basename $SITE` = signedUpdates ]; then
|
elif [ ${TYPE} = testSigned ]; then
|
||||||
echo "Working on signed update site"
|
echo "Working on signed update site"
|
||||||
TYPE=testSigned
|
TPTYPE="3.1 Signed Test"
|
||||||
|
TPVERSION="${TPVERSION} ${TPTYPE}"
|
||||||
echo "Signing jars from test update site (expecting conditioned jars)..."
|
echo "Signing jars from test update site (expecting conditioned jars)..."
|
||||||
STAGING=/home/data/httpd/download-staging.priv/dsdp/tm
|
STAGING=/home/data/httpd/download-staging.priv/dsdp/tm
|
||||||
stamp=`date +'%Y%m%d-%H%M'`
|
stamp=`date +'%Y%m%d-%H%M'`
|
||||||
|
@ -179,65 +190,69 @@ elif [ `basename $SITE` = signedUpdates ]; then
|
||||||
fi
|
fi
|
||||||
rm index.html site.xml web/site.xsl
|
rm index.html site.xml web/site.xsl
|
||||||
cvs -q update -dPR
|
cvs -q update -dPR
|
||||||
sed -e 's,/dsdp/tm/updates/2.0,/dsdp/tm/signedUpdates,g' \
|
sed -e "s,/dsdp/tm/updates/2.0,/dsdp/tm/${SITEDIR},g" \
|
||||||
-e 's,Project 2.0 Update,Project Signed Test Update,g' \
|
-e "s,Project 2.0 Update,Project ${TPTYPE} Update,g" \
|
||||||
index.html > index.html.new
|
index.html > index.html.new
|
||||||
mv -f index.html.new index.html
|
mv -f index.html.new index.html
|
||||||
sed -e 's,/dsdp/tm/updates/2.0,/dsdp/tm/signedUpdates,g' \
|
sed -e "s,/dsdp/tm/updates/2.0,/dsdp/tm/${SITEDIR},g" \
|
||||||
-e 's,Project 2.0 Update,Project Signed Test 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_0 -->/d' \
|
-e '/<!-- BEGIN_3_0 -->/,/<!-- END_3_0_1 -->/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 Signed Test Update,g' \
|
sed -e "s,Project 2.0 Update,Project ${TPTYPE} Update,g" \
|
||||||
web/site.xsl > web/site.xsl.new
|
web/site.xsl > web/site.xsl.new
|
||||||
mv -f web/site.xsl.new web/site.xsl
|
mv -f web/site.xsl.new web/site.xsl
|
||||||
## CHECK VERSION CORRECTNESS for 2.0.1
|
## CHECK VERSION CORRECTNESS for 2.0.1
|
||||||
echo "VERIFYING VERSION CORRECNESS: Features"
|
echo "VERIFYING VERSION CORRECNESS: Features"
|
||||||
ls features | grep -v '_[12]\.0\.1\.v' | sort > f1.$$.txt
|
ls features | grep -v '_[123]\.0\.0\.v' | sort > f1.$$.txt
|
||||||
ls ../updates/2.0/features | sort > f2.$$.txt
|
ls ../updates/3.0/features | sort > f2.$$.txt
|
||||||
echo "wc old-features:"
|
echo "wc old-features:"
|
||||||
wc f1.$$.txt
|
wc f1.$$.txt
|
||||||
diff f1.$$.txt f2.$$.txt | grep -v '^[>]'
|
diff f1.$$.txt f2.$$.txt | grep -v '^[>]'
|
||||||
echo "VERIFYING VERSION CORRECNESS: Plugins"
|
echo "VERIFYING VERSION CORRECNESS: Plugins"
|
||||||
ls plugins | grep -v '_[12]\.0\.1\.v' | sort > p1.$$.txt
|
ls plugins | grep -v '_[123]\.0\.0\.v' | sort > p1.$$.txt
|
||||||
ls ../updates/2.0/plugins | sort > p2.$$.txt
|
ls ../updates/3.0/plugins | sort > p2.$$.txt
|
||||||
echo "wc old-plugins:"
|
echo "wc old-plugins:"
|
||||||
wc p1.$$.txt
|
wc p1.$$.txt
|
||||||
diff p1.$$.txt p2.$$.txt | grep -v '^[>]'
|
diff p1.$$.txt p2.$$.txt | grep -v '^[>]'
|
||||||
rm f1.$$.txt f2.$$.txt p1.$$.txt p2.$$.txt
|
rm f1.$$.txt f2.$$.txt p1.$$.txt p2.$$.txt
|
||||||
elif [ `basename $SITE` = milestones ]; then
|
elif [ ${TYPE} = milestone ]; then
|
||||||
echo "Working on milestone update site"
|
echo "Working on milestone update site"
|
||||||
TYPE=milestone
|
TPTYPE="3.1 Milestone"
|
||||||
|
TPVERSION="${TPVERSION} ${TPTYPE}"
|
||||||
echo "Expect that you copied your features and plugins yourself"
|
echo "Expect that you copied your features and plugins yourself"
|
||||||
stamp=`date +'%Y%m%d-%H%M'`
|
stamp=`date +'%Y%m%d-%H%M'`
|
||||||
rm index.html site.xml web/site.xsl
|
rm index.html site.xml web/site.xsl
|
||||||
cvs -q update -dPR
|
cvs -q update -dPR
|
||||||
sed -e 's,/dsdp/tm/updates/2.0,/dsdp/tm/updates/milestones,g' \
|
sed -e "s,/dsdp/tm/updates/2.0,/dsdp/tm/updates/${SITEDIR},g" \
|
||||||
-e 's,Project 2.0 Update,Project Milestone Update,g' \
|
-e "s,Project 2.0 Update,Project ${TPTYPE} Update,g" \
|
||||||
-e '\,</h1>,a\
|
-e '\,</h1>,a\
|
||||||
This site contains Target Management Milestones (I-, S- and M- builds) which are \
|
This site contains Target Management Milestones (I-, S- and M- builds) which are \
|
||||||
being contributed to the Europa coordinated release train (Eclipse 3.3).' \
|
being contributed to the Galileo coordinated release train (Eclipse 3.5.x).' \
|
||||||
index.html > index.html.new
|
index.html > index.html.new
|
||||||
mv -f index.html.new index.html
|
mv -f index.html.new index.html
|
||||||
## keep 2.0.x features in site.xml
|
## keep 3.0.x features in site.xml
|
||||||
## -e '/<!-- BEGIN_2_0_1 -->/,/<!-- END_2_0_4 -->/d' \
|
## -e '/<!-- BEGIN_2_0_1 -->/,/<!-- END_2_0_4 -->/d' \
|
||||||
sed -e 's,/dsdp/tm/updates/2.0,/dsdp/tm/updates/milestones,g' \
|
sed -e "s,/dsdp/tm/updates/2.0,/dsdp/tm/updates/${SITEDIR},g" \
|
||||||
-e 's,Project 2.0 Update,Project Milestone Update,g' \
|
-e "s,Project 2.0 Update,Project ${TPTYPE} Update,g" \
|
||||||
|
-e '/<!-- BEGIN_2_0 -->/,/<!-- END_2_0_4 -->/d' \
|
||||||
|
-e '/<!-- BEGIN_3_0 -->/,/<!-- END_3_0_1 -->/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 Milestone Update,g' \
|
sed -e "s,Project 2.0 Update,Project ${TPTYPE} Update,g" \
|
||||||
web/site.xsl > web/site.xsl.new
|
web/site.xsl > web/site.xsl.new
|
||||||
mv -f web/site.xsl.new web/site.xsl
|
mv -f web/site.xsl.new web/site.xsl
|
||||||
elif [ `basename $SITE` = interim ]; then
|
elif [ ${TYPE} = interim ]; then
|
||||||
echo "Working on interim update site"
|
echo "Working on interim update site"
|
||||||
TYPE=interim
|
TPTYPE="3.1 Interim"
|
||||||
|
TPVERSION="${TPVERSION} ${TPTYPE}"
|
||||||
echo "Expect that you copied your features and plugins yourself"
|
echo "Expect that you copied your features and plugins yourself"
|
||||||
stamp=`date +'%Y%m%d-%H%M'`
|
stamp=`date +'%Y%m%d-%H%M'`
|
||||||
rm index.html site.xml web/site.xsl
|
rm index.html site.xml web/site.xsl
|
||||||
cvs -q update -dPR
|
cvs -q update -dPR
|
||||||
sed -e 's,/dsdp/tm/updates/2.0,/dsdp/tm/updates/interim,g' \
|
sed -e "s,/dsdp/tm/updates/2.0,/dsdp/tm/updates/${SITEDIR},g" \
|
||||||
-e 's,Project 2.0 Update,Project Interim Update,g' \
|
-e "s,Project 2.0 Update,Project ${TPTYPE} Update,g" \
|
||||||
-e '\,</h1>,a\
|
-e '\,</h1>,a\
|
||||||
This site contains Target Management Interim Maintenance builds (I-, S-, and M-builds) in order \
|
This site contains Target Management Interim Maintenance builds (I-, S-, and M-builds) in order \
|
||||||
to test them before going live.' \
|
to test them before going live.' \
|
||||||
|
@ -245,37 +260,40 @@ to test them before going live.' \
|
||||||
mv -f index.html.new index.html
|
mv -f index.html.new index.html
|
||||||
## keep 2.0.x features in site.xml
|
## keep 2.0.x features in site.xml
|
||||||
## -e '/<!-- BEGIN_2_0_1 -->/,/<!-- END_2_0_4 -->/d' \
|
## -e '/<!-- BEGIN_2_0_1 -->/,/<!-- END_2_0_4 -->/d' \
|
||||||
sed -e 's,/dsdp/tm/updates/2.0,/dsdp/tm/updates/interim,g' \
|
sed -e "s,/dsdp/tm/updates/2.0,/dsdp/tm/updates/${SITEDIR},g" \
|
||||||
-e 's,Project 2.0 Update,Project Interim Update,g' \
|
-e "s,Project 2.0 Update,Project ${TPTYPE} Update,g" \
|
||||||
|
-e '/<!-- BEGIN_2_0_5 -->/,/<!-- END_2_0_5 -->/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 Interim Update,g' \
|
sed -e "s,Project 2.0 Update,Project ${TPTYPE} Update,g" \
|
||||||
web/site.xsl > web/site.xsl.new
|
web/site.xsl > web/site.xsl.new
|
||||||
mv -f web/site.xsl.new web/site.xsl
|
mv -f web/site.xsl.new web/site.xsl
|
||||||
elif [ `basename $SITE` = 3.0 ]; then
|
elif [ `basename $SITE` = 3.1 ]; then
|
||||||
echo "Working on 3.0 update site"
|
echo "Working on 3.1 update site"
|
||||||
|
TPTYPE="3.1"
|
||||||
|
TPVERSION="${TPVERSION} ${TPTYPE}"
|
||||||
TYPE=milestone
|
TYPE=milestone
|
||||||
echo "Expect that you copied your features and plugins yourself"
|
echo "Expect that you copied your features and plugins yourself"
|
||||||
stamp=`date +'%Y%m%d-%H%M'`
|
stamp=`date +'%Y%m%d-%H%M'`
|
||||||
rm index.html site.xml web/site.xsl
|
rm index.html site.xml web/site.xsl
|
||||||
cvs -q update -dPR
|
cvs -q update -dPR
|
||||||
sed -e 's,/dsdp/tm/updates/2.0,/dsdp/tm/updates/3.0,g' \
|
sed -e "s,/dsdp/tm/updates/2.0,/dsdp/tm/updates/${SITEDIR},g" \
|
||||||
-e 's,Project 2.0 Update,Project 3.0 Update,g' \
|
-e "s,Project 2.0 Update,Project ${TPTYPE} Update,g" \
|
||||||
-e '\,</h1>,a\
|
-e '\,</h1>,a\
|
||||||
This site contains Target Management 3.0 Releases and Updates (R- builds) which are \
|
This site contains Target Management 3.0 Releases and Updates (R- builds) which are \
|
||||||
being contributed to the Ganymede coordinated release train (Eclipse 3.4).' \
|
being contributed to the Galileo coordinated release train (Eclipse 3.5).' \
|
||||||
index.html > index.html.new
|
index.html > index.html.new
|
||||||
mv -f index.html.new index.html
|
mv -f index.html.new index.html
|
||||||
## dont keep 2.0.x features in site.xml
|
## dont keep 2.0.x features in site.xml
|
||||||
sed -e 's,/dsdp/tm/updates/2.0,/dsdp/tm/updates/3.0,g' \
|
sed -e "s,/dsdp/tm/updates/2.0,/dsdp/tm/updates/${SITEDIR},g" \
|
||||||
-e 's,Project 2.0 Update,Project 3.0 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' \
|
||||||
site.xml > site.xml.new1
|
site.xml > site.xml.new1
|
||||||
sed -e '/<!-- BEGIN_3_0_1 -->/,/<!-- END_3_0_1 -->/d' \
|
sed -e '/<!-- BEGIN_3_0 -->/,/<!-- END_3_0_1 -->/d' \
|
||||||
site.xml.new1 > site.xml.new
|
site.xml.new1 > site.xml.new
|
||||||
mv -f site.xml.new site.xml
|
mv -f site.xml.new site.xml
|
||||||
rm site.xml.new1
|
rm site.xml.new1
|
||||||
sed -e 's,Project 2.0 Update,Project 3.0 Update,g' \
|
sed -e "s,Project 2.0 Update,Project ${TPTYPE} Update,g" \
|
||||||
web/site.xsl > web/site.xsl.new
|
web/site.xsl > web/site.xsl.new
|
||||||
mv -f web/site.xsl.new web/site.xsl
|
mv -f web/site.xsl.new web/site.xsl
|
||||||
else
|
else
|
||||||
|
@ -357,9 +375,9 @@ java -jar ${basebuilder}/plugins/org.eclipse.equinox.launcher.jar \
|
||||||
-updateSite ${SITE}/ \
|
-updateSite ${SITE}/ \
|
||||||
-site file:${SITE}/site.xml \
|
-site file:${SITE}/site.xml \
|
||||||
-metadataRepository file:${SITE}/ \
|
-metadataRepository file:${SITE}/ \
|
||||||
-metadataRepositoryName "Target Management 3.0 Update Site" \
|
-metadataRepositoryName "${TPVERSION} Update Site" \
|
||||||
-artifactRepository file:${SITE}/ \
|
-artifactRepository file:${SITE}/ \
|
||||||
-artifactRepositoryName "Target Management 3.0 Artifacts" \
|
-artifactRepositoryName "${TPVERSION} Artifacts" \
|
||||||
-compress \
|
-compress \
|
||||||
-reusePack200Files \
|
-reusePack200Files \
|
||||||
-noDefaultIUs \
|
-noDefaultIUs \
|
||||||
|
|
|
@ -404,4 +404,59 @@
|
||||||
</description>
|
</description>
|
||||||
</category-def>
|
</category-def>
|
||||||
<!-- END_3_0_1 -->
|
<!-- END_3_0_1 -->
|
||||||
|
<!-- BEGIN_3_1 -->
|
||||||
|
<feature url="features/org.eclipse.rse.core_3.0.1.qualifier.jar" id="org.eclipse.rse.core" version="3.0.1.qualifier">
|
||||||
|
<category name="TM and RSE 3.1"/>
|
||||||
|
</feature>
|
||||||
|
<feature url="features/org.eclipse.rse.dstore_3.0.1.qualifier.jar" id="org.eclipse.rse.dstore" version="3.0.1.qualifier">
|
||||||
|
<category name="TM and RSE 3.1"/>
|
||||||
|
</feature>
|
||||||
|
<feature url="features/org.eclipse.rse.ftp_3.0.1.qualifier.jar" id="org.eclipse.rse.ftp" version="3.0.1.qualifier">
|
||||||
|
<category name="TM and RSE 3.1"/>
|
||||||
|
</feature>
|
||||||
|
<feature url="features/org.eclipse.rse.local_2.1.1.qualifier.jar" id="org.eclipse.rse.local" version="2.1.1.qualifier">
|
||||||
|
<category name="TM and RSE 3.1"/>
|
||||||
|
</feature>
|
||||||
|
<feature url="features/org.eclipse.rse_3.0.1.qualifier.jar" id="org.eclipse.rse" version="3.0.1.qualifier">
|
||||||
|
<category name="TM and RSE 3.1"/>
|
||||||
|
</feature>
|
||||||
|
<feature url="features/org.eclipse.rse.sdk_3.0.1.qualifier.jar" id="org.eclipse.rse.sdk" version="3.0.1.qualifier">
|
||||||
|
<category name="TM and RSE 3.1"/>
|
||||||
|
</feature>
|
||||||
|
<feature url="features/org.eclipse.rse.ssh_2.1.1.qualifier.jar" id="org.eclipse.rse.ssh" version="2.1.1.qualifier">
|
||||||
|
<category name="TM and RSE 3.1"/>
|
||||||
|
</feature>
|
||||||
|
<feature url="features/org.eclipse.rse.telnet_2.1.0.qualifier.jar" id="org.eclipse.rse.telnet" version="2.1.0.qualifier">
|
||||||
|
<category name="TM and RSE 3.1"/>
|
||||||
|
</feature>
|
||||||
|
<feature url="features/org.eclipse.rse.examples_3.0.0.qualifier.jar" id="org.eclipse.rse.examples" version="3.0.0.qualifier">
|
||||||
|
<category name="TM and RSE 3.1"/>
|
||||||
|
</feature>
|
||||||
|
<feature url="features/org.eclipse.rse.remotecdt_2.1.1.qualifier.jar" id="org.eclipse.rse.remotecdt" version="2.1.1.qualifier">
|
||||||
|
<category name="TM and RSE 3.1"/>
|
||||||
|
</feature>
|
||||||
|
<feature url="features/org.eclipse.rse.terminals_0.1.1.qualifier.jar" id="org.eclipse.rse.terminals" version="0.1.1.qualifier">
|
||||||
|
<category name="TM and RSE 3.1"/>
|
||||||
|
</feature>
|
||||||
|
<feature url="features/org.eclipse.rse.useractions_1.1.1.qualifier.jar" id="org.eclipse.rse.useractions" version="1.1.1.qualifier">
|
||||||
|
<category name="TM and RSE 3.1"/>
|
||||||
|
</feature>
|
||||||
|
<feature url="features/org.eclipse.rse.wince_0.2.0.qualifier.jar" id="org.eclipse.rse.wince" version="0.1.1.qualifier" os="win32" arch="x86">
|
||||||
|
<category name="TM and RSE 3.1"/>
|
||||||
|
</feature>
|
||||||
|
<feature url="features/org.eclipse.tm.discovery_3.0.0.qualifier.jar" id="org.eclipse.tm.discovery" version="3.0.0.qualifier">
|
||||||
|
<category name="TM and RSE 3.1"/>
|
||||||
|
</feature>
|
||||||
|
<feature url="features/org.eclipse.tm.terminal.sdk_2.0.1.qualifier.jar" id="org.eclipse.tm.terminal.sdk" version="2.0.1.qualifier">
|
||||||
|
<category name="TM and RSE 3.1"/>
|
||||||
|
</feature>
|
||||||
|
<feature url="features/org.eclipse.rse.tests_3.0.1.qualifier.jar" id="org.eclipse.rse.tests" version="3.0.1.qualifier">
|
||||||
|
<category name="TM and RSE 3.1"/>
|
||||||
|
</feature>
|
||||||
|
<category-def name="TM and RSE 3.1" label="TM and RSE 3.1">
|
||||||
|
<description>
|
||||||
|
Features and add-ons of the 3.1 release of Target Management / RSE.
|
||||||
|
</description>
|
||||||
|
</category-def>
|
||||||
|
<!-- END_3_1 -->
|
||||||
</site>
|
</site>
|
||||||
|
|
Loading…
Add table
Reference in a new issue