Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjay2018-07-24 15:56:45 +0000
committerSravan Kumar Lakkimsetti2018-07-25 13:49:44 +0000
commit1dcd5f796fe7826bb795b7ec729ef7fd541ac778 (patch)
tree7979a59a3cacb7b83e79e2c5b5e23bb4bcd1fda7 /eclipse-platform-parent
parentd38da00925dc0a192d00c877d4b20ede97b1855f (diff)
downloadeclipse.platform.releng.aggregator-1dcd5f796fe7826bb795b7ec729ef7fd541ac778.tar.gz
eclipse.platform.releng.aggregator-1dcd5f796fe7826bb795b7ec729ef7fd541ac778.tar.xz
eclipse.platform.releng.aggregator-1dcd5f796fe7826bb795b7ec729ef7fd541ac778.zip
Bug 537316 - 11] Create patch build for Java 11 support
Change-Id: I909df76a2e5bf2b03d696249011a70ddfecf057b Signed-off-by: jay <jarthana@in.ibm.com>
Diffstat (limited to 'eclipse-platform-parent')
-rw-r--r--eclipse-platform-parent/pom.xml35
1 files changed, 35 insertions, 0 deletions
diff --git a/eclipse-platform-parent/pom.xml b/eclipse-platform-parent/pom.xml
index 152c112dc..5ec963222 100644
--- a/eclipse-platform-parent/pom.xml
+++ b/eclipse-platform-parent/pom.xml
@@ -612,6 +612,41 @@
</build>
<profiles>
<profile>
+ <profile>
+ <id>java11patch49</id>
+ <properties>
+ <qualifier.format>'v'yyyyMMdd-HHmm'_BETA_JAVA11'</qualifier.format>
+
+ <featureToPatch>org.eclipse.jdt</featureToPatch>
+
+ <!--
+ For future versions, in addition to changing this value of "featureToPatchVersion",
+ the same value needs to be edited in
+ .../java11patch49/org.eclipse.jdt.java11patch/feature.xml
+ and
+ .../java11patch49/org.eclipse.jdt-feature-dummy/feature.xml
+ and it of course, must "match" what ever version was produced by the build specified
+ a few lines below, as the eclipse-p2-repo-java11patch49 p2 repository, as well as the lower
+ bound, in 'versionRangeForPatch'.
+
+ Also, when new patch created, should update the wiki at
+ https://wiki.eclipse.org/Java11
+ -->
+ <!-- This needs the version of the feature to be patched. -->
+ <featureToPatchVersion>3.14.0.v20180611-0500</featureToPatchVersion>
+ <!-- Can specify an exact range here, or something of a loose range, depending on what's needed. -->
+ <versionRangeForPatch>[3.14.0.v20180611-0500,3.15.0.v20190724-2000)</versionRangeForPatch>
+ <!-- Comment this line when a patch is required on top of I-build -->
+ <!--comparator.repo>http://download.eclipse.org/eclipse/updates/4.7-M-builds</comparator.repo-->
+ </properties>
+ <repositories>
+ <repository>
+ <id>eclipse-p2-repo-java11patch49</id>
+ <url>http://download.eclipse.org/eclipse/updates/4.9-I-builds/</url>
+ <layout>p2</layout>
+ </repository>
+ </repositories>
+ </profile>
<id>build-individual-bundles</id>
<activation>
<property>

Back to the top