Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephan Herrmann2014-04-17 12:03:06 +0000
committerStephan Herrmann2014-04-17 12:03:06 +0000
commit15dea1e38d483923577514d903266ea7c340fb66 (patch)
tree262190ed135c781d4cdcd0c9b02030ee6490bf48
parentede7461b401e1a660289c6b7a73f69da718e6259 (diff)
downloadorg.eclipse.objectteams-15dea1e38d483923577514d903266ea7c340fb66.tar.gz
org.eclipse.objectteams-15dea1e38d483923577514d903266ea7c340fb66.tar.xz
org.eclipse.objectteams-15dea1e38d483923577514d903266ea7c340fb66.zip
Bug 350133 - Check for Updates suggests Object Teams patch for JDT
-rw-r--r--releng/build-scripts/build/patch-content-xml.xsl8
1 files changed, 8 insertions, 0 deletions
diff --git a/releng/build-scripts/build/patch-content-xml.xsl b/releng/build-scripts/build/patch-content-xml.xsl
index c3e2bd7ee..ece54b59d 100644
--- a/releng/build-scripts/build/patch-content-xml.xsl
+++ b/releng/build-scripts/build/patch-content-xml.xsl
@@ -2,6 +2,14 @@
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:fn="http://www.w3.org/2004/07/xpath-functions" xmlns:xdt="http://www.w3.org/2004/07/xpath-datatypes" exclude-result-prefixes="xs fn xdt">
<xsl:param name="version"/>
<xsl:param name="versionnext" />
+ <xsl:template match="lifeCycle/required[@name='org.eclipse.jdt.feature.group' and @greedy='false']">
+ <xsl:copy>
+ <xsl:attribute name="namespace"><xsl:value-of select="@namespace" /></xsl:attribute>
+ <xsl:attribute name="name">org.eclipse.jdt.core</xsl:attribute>
+ <xsl:attribute name="range"><xsl:value-of select="@range" /></xsl:attribute>
+ <xsl:attribute name="greedy"><xsl:value-of select="@greedy" /></xsl:attribute>
+ </xsl:copy>
+ </xsl:template>
<xsl:template match="@range[../@name='org.eclipse.jdt.feature.group']">
<xsl:choose>
<!-- cannot use "concat('[',$version)" inside match predicate, so choose now: -->

Back to the top