Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSravan Kumar Lakkimsetti2016-08-22 11:42:03 +0000
committerSravan Kumar Lakkimsetti2016-08-22 11:42:03 +0000
commit41c75e755e78b9cc21866614bfc90560e623ec56 (patch)
tree0955d43ed12ec662a3c02a91443471122bf33e78 /eclipse-platform-parent/pom.xml
parent65bf874312867bda34360260d87f89fa586321b6 (diff)
downloadeclipse.platform.releng.aggregator-41c75e755e78b9cc21866614bfc90560e623ec56.tar.gz
eclipse.platform.releng.aggregator-41c75e755e78b9cc21866614bfc90560e623ec56.tar.xz
eclipse.platform.releng.aggregator-41c75e755e78b9cc21866614bfc90560e623ec56.zip
Bug 500056 - Setup patch build for BETA_JAVA9 branch on 4.6 release
Diffstat (limited to 'eclipse-platform-parent/pom.xml')
-rw-r--r--eclipse-platform-parent/pom.xml34
1 files changed, 34 insertions, 0 deletions
diff --git a/eclipse-platform-parent/pom.xml b/eclipse-platform-parent/pom.xml
index f33ae20ee..aa517c84a 100644
--- a/eclipse-platform-parent/pom.xml
+++ b/eclipse-platform-parent/pom.xml
@@ -645,6 +645,40 @@ No need to specify sonatype URL for "Tycho". released versions available on mave
</repositories>
</profile>
<profile>
+ <id>java9patch46</id>
+ <properties>
+ <qualifier.format>'v'yyyyMMdd-HHmm'_BETA_JAVA9'</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
+ .../java9patch47/org.eclipse.jdt.java9patch/feature.xml
+ and
+ .../java9patch47/org.eclipse.jdt-feature-dummy/feature.xm
+ and it of course, must "match" what ever version was produced by the build specified
+ a few lines below, as the eclipse-p2-repo-java9patch46 p2 repository, as well as the lower
+ bound, in 'versionRangeForPatch'.
+
+ Also, when new patch created, should update the wiki at
+ https://wiki.eclipse.org/Java9
+ -->
+ <!-- This needs the version of the feature to be patched. -->
+ <featureToPatchVersion>3.12.0.v20160603-1000</featureToPatchVersion>
+ <!-- Can specify an exact range here, or something of a loose range, depending on what's needed. -->
+ <versionRangeForPatch>[3.12.0.v20160603-1000,3.12.0.v20160915-0800)</versionRangeForPatch>
+
+ </properties>
+ <repositories>
+ <repository>
+ <id>eclipse-p2-repo-java9patch46</id>
+ <url>http://download.eclipse.org/eclipse/updates/4.6-M-builds</url>
+ <layout>p2</layout>
+ </repository>
+ </repositories>
+ </profile>
+ <profile>
<id>build-individual-bundles</id>
<properties>
<!--

Back to the top