Bug 350133 - Check for Updates suggests Object Teams patch for JDT
diff --git a/releng/build-scripts/build/patch-content-xml.xsl b/releng/build-scripts/build/patch-content-xml.xsl
index c3e2bd7..ece54b5 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: -->