Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSravan Kumar Lakkimsetti2017-07-06 11:35:39 +0000
committerSravan Kumar Lakkimsetti2017-07-06 11:36:16 +0000
commita5fe27d4bc26c364a06f77030a62a92dfd7eda9a (patch)
treec7b20fa30080fe4e2762cc293e6eea150c8b591b /eclipse-platform-parent
parent23245bbaef25dcf9b00bb8c56e6725c85c024dd9 (diff)
downloadeclipse.platform.releng.aggregator-a5fe27d4bc26c364a06f77030a62a92dfd7eda9a.tar.gz
eclipse.platform.releng.aggregator-a5fe27d4bc26c364a06f77030a62a92dfd7eda9a.tar.xz
eclipse.platform.releng.aggregator-a5fe27d4bc26c364a06f77030a62a92dfd7eda9a.zip
Bug 518239 - [JUnit 5] Feature patch for JUnit 5 support on 4.7
Change-Id: I29840865afe0f2448869ef64acb0cb60f1bbc1f6 Signed-off-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com>
Diffstat (limited to 'eclipse-platform-parent')
-rw-r--r--eclipse-platform-parent/pom.xml21
1 files changed, 11 insertions, 10 deletions
diff --git a/eclipse-platform-parent/pom.xml b/eclipse-platform-parent/pom.xml
index be3f37d8d..6f49f876d 100644
--- a/eclipse-platform-parent/pom.xml
+++ b/eclipse-platform-parent/pom.xml
@@ -593,35 +593,36 @@
</repositories>
</profile>
<profile>
- <id>java9patch46</id>
+ <id>junit5patch</id>
<properties>
- <qualifier.format>'v'yyyyMMdd-HHmm'_BETA_JAVA9'</qualifier.format>
+ <qualifier.format>'v'yyyyMMdd-HHmm'_BETA_JUNIT5'</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
+ .../junit5patch/org.eclipse.jdt.junit5patch/feature.xml
and
- .../java9patch47/org.eclipse.jdt-feature-dummy/feature.xm
+ .../junit5patch/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
+ a few lines below, as the eclipse-p2-repo-junit5patch 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>
+ <featureToPatchVersion>3.13.0.v20170612-0950</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>
-
+ <versionRangeForPatch>[3.13.0.v20170612-0950,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</comparator.repo>
</properties>
<repositories>
<repository>
- <id>eclipse-p2-repo-java9patch46</id>
- <url>http://download.eclipse.org/eclipse/updates/4.6-M-builds</url>
+ <id>eclipse-p2-repo-junit5patch47</id>
+ <url>http://download.eclipse.org/eclipse/updates/4.7</url>
<layout>p2</layout>
</repository>
</repositories>

Back to the top