Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJay Arthanareeswaran2019-02-22 07:02:47 +0000
committerJay Arthanareeswaran2019-02-26 10:25:14 +0000
commiteb513459ab6ef76bbd182b29cf34bad2ddc5be92 (patch)
treef7c7cda9391e1d3f0a56cc9e27e355e532346554 /eclipse-platform-parent
parenta11084f01bb28343dd7cd7d5320ce01a9481be25 (diff)
downloadeclipse.platform.releng.aggregator-eb513459ab6ef76bbd182b29cf34bad2ddc5be92.tar.gz
eclipse.platform.releng.aggregator-eb513459ab6ef76bbd182b29cf34bad2ddc5be92.tar.xz
eclipse.platform.releng.aggregator-eb513459ab6ef76bbd182b29cf34bad2ddc5be92.zip
Bug 544692: [12] Create Patch (P) build support for Java 12
Change-Id: I0e79e5b26e393ceddcdd4058b471bcc28f90c2a4 Signed-off-by: Jay Arthanareeswaran <jarthana@in.ibm.com>
Diffstat (limited to 'eclipse-platform-parent')
-rw-r--r--eclipse-platform-parent/pom.xml26
1 files changed, 13 insertions, 13 deletions
diff --git a/eclipse-platform-parent/pom.xml b/eclipse-platform-parent/pom.xml
index 0f08d5cee..51ef7e73b 100644
--- a/eclipse-platform-parent/pom.xml
+++ b/eclipse-platform-parent/pom.xml
@@ -587,9 +587,9 @@
</build>
<profiles>
<profile>
- <id>java11patch49</id>
+ <id>java12patch411</id>
<properties>
- <qualifier.format>'v'yyyyMMdd-HHmm'_BETA_JAVA11'</qualifier.format>
+ <qualifier.format>'v'yyyyMMdd-HHmm'_BETA_JAVA12'</qualifier.format>
<featureToPatch>org.eclipse.jdt</featureToPatch>
<featureToPatchPDE>org.eclipse.pde</featureToPatchPDE>
@@ -597,29 +597,29 @@
<!--
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
+ .../java12patch411/org.eclipse.jdt.java12patch/feature.xml
and
- .../java11patch49/org.eclipse.jdt-feature-dummy/feature.xml
+ .../java12patch411/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
+ a few lines below, as the eclipse-p2-repo-java12patch411 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
+ https://wiki.eclipse.org/Java12
-->
<!-- This needs the version of the feature to be patched. -->
- <featureToPatchVersion>3.15.0.v20180906-0745</featureToPatchVersion>
- <featureToPatchVersionPDE>3.13.200.v20180906-0745</featureToPatchVersionPDE>
+ <featureToPatchVersion>3.17.0.v20190220-1800</featureToPatchVersion>
+ <featureToPatchVersionPDE>3.13.400.v20190220-1800</featureToPatchVersionPDE>
<!-- Can specify an exact range here, or something of a loose range, depending on what's needed. -->
- <versionRangeForPatch>[3.15.0.v20180906-0745,3.16.0.v20190724-2000)</versionRangeForPatch>
- <versionRangeForPatchPDE>[3.13.200.v20180906-0745,3.16.0.v20190724-2000)</versionRangeForPatchPDE>
+ <versionRangeForPatch>[3.17.0.v20190220-1800,3.18.0.v20190724-2000)</versionRangeForPatch>
+ <versionRangeForPatchPDE>[3.13.400.v20190220-1800,3.13.500.v20190724-2000)</versionRangeForPatchPDE>
<!-- Comment this line when a patch is required on top of I-build -->
- <comparator.repo>http://download.eclipse.org/eclipse/updates/4.9/R-4.9-201809060745/</comparator.repo>
+ <comparator.repo>https://download.eclipse.org/eclipse/updates/4.11milestones/</comparator.repo>
</properties>
<repositories>
<repository>
- <id>eclipse-p2-repo-java11patch49</id>
- <url>http://download.eclipse.org/eclipse/updates/4.9/R-4.9-201809060745/</url>
+ <id>eclipse-p2-repo-java12patch411</id>
+ <url>https://download.eclipse.org/eclipse/updates/4.11milestones/</url>
<layout>p2</layout>
</repository>
</repositories>

Back to the top