-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[24] Try building the java24 patch on JDT infra
- make wget silent - invoke xslt processor via ant Fixes eclipse-jdt/eclipse.jdt.core#3244
- Loading branch information
1 parent
e49a1ed
commit 118ddef
Showing
2 changed files
with
26 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<project name="patchMetadata" default="main"> | ||
|
||
<target name="main"> | ||
<echo message="Patching metadata in ${BASE}/work/buildRepo to relax version requirement of our patch feature"/> | ||
|
||
<!-- patch feature version in content.xml --> | ||
<property name="patch-content.xsltFile" value="${BASE}/patchMatchVersion.xsl" /> | ||
<property name="content.origFile" value="content-ORIG.xml" /> | ||
<property name="content.transFile" value="content.xml" /> | ||
<xslt basedir="${BASE}/work/buildRepo" destdir="${BASE}/work/buildRepo" includes="${content.origFile}" style="${patch-content.xsltFile}" force="true"> | ||
<outputproperty name="method" value="xml"/> | ||
<outputproperty name="encoding" value="UTF-8"/> | ||
<outputproperty name="indent" value="yes"/> | ||
<param name="patchFeatureVersionRange" expression="${patchFeatureVersionRange}"/> | ||
<param name="patchFeatureIU" expression="org.eclipse.jdt.java25patch.feature.group"/> | ||
<mapper type="glob" from="${content.origFile}" to="${content.transFile}"/> | ||
</xslt> | ||
</target> | ||
</project> |