Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJay Arthanareeswaran2018-01-22 10:09:52 +0000
committerSravan Kumar Lakkimsetti2018-02-07 11:28:28 +0000
commit3ec613779ec6da78b095a93c408d946c3ce28a16 (patch)
tree5d22783f1b7b8805c2e205b4e330ef82a210dcd2 /eclipse-platform-parent
parentb7e82f8289de2e7ef0cb9d446ec9ac5bddbc31ca (diff)
downloadeclipse.platform.releng.aggregator-3ec613779ec6da78b095a93c408d946c3ce28a16.tar.gz
eclipse.platform.releng.aggregator-3ec613779ec6da78b095a93c408d946c3ce28a16.tar.xz
eclipse.platform.releng.aggregator-3ec613779ec6da78b095a93c408d946c3ce28a16.zip
Bug 530110 - [10] Create patch build for Java 10
Change-Id: I297c46ff6faf6234a3ca134772228ce70fab964d Signed-off-by: Jay Arthanareeswaran <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 8d1459760..02fee55dd 100644
--- a/eclipse-platform-parent/pom.xml
+++ b/eclipse-platform-parent/pom.xml
@@ -600,6 +600,41 @@
</build>
<profiles>
<profile>
+ <id>java10patch47</id>
+ <properties>
+ <qualifier.format>'v'yyyyMMdd-HHmm'_BETA_JAVA10'</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
+ .../java10patch47/org.eclipse.jdt.java10patch/feature.xml
+ and
+ .../java10patch47/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-java10patch47 p2 repository, as well as the lower
+ bound, in 'versionRangeForPatch'.
+
+ Also, when new patch created, should update the wiki at
+ https://wiki.eclipse.org/Java10
+ -->
+ <!-- This needs the version of the feature to be patched. -->
+ <featureToPatchVersion>3.13.0.v20170531-2000</featureToPatchVersion>
+ <!-- Can specify an exact range here, or something of a loose range, depending on what's needed. -->
+ <versionRangeForPatch>[3.13.0.v20170531-2000,3.14.0.v20171115-0230)</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-java10patch47</id>
+ <url>http://download.eclipse.org/eclipse/updates/4.7-M-builds</url>
+ <layout>p2</layout>
+ </repository>
+ </repositories>
+ </profile>
+ <profile>
<id>build-individual-bundles</id>
<activation>
<property>

Back to the top