Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Johnson2021-06-17 09:53:13 +0000
committerAndrew Johnson2021-06-17 09:54:20 +0000
commitdb82f0f8fdf4fc3137d7eaea5db6d29902855f60 (patch)
treeaadaaf21ab4a95ace7209a98f795504d5e33ad57
parent790dfa6f0e0b9222c47530abd058c073f321ad3f (diff)
downloadorg.eclipse.mat-db82f0f8fdf4fc3137d7eaea5db6d29902855f60.tar.gz
org.eclipse.mat-db82f0f8fdf4fc3137d7eaea5db6d29902855f60.tar.xz
org.eclipse.mat-db82f0f8fdf4fc3137d7eaea5db6d29902855f60.zip
573166: Build stand-alone MAT packages with a newer Eclipse release
Eclipse 4.20 removes IPlatformRunnable, which breaks org.eclipse.tycho.surefire.osgibooter_1.7.0. Tycho 2.0.0 then requires the includeSource to match in the target defs Change-Id: I7a9f0dda07b4b9a27240d763cb825b974cde9a31 Task-Url: https://bugs.eclipse.org/bugs/show_bug.cgi?id=573166
-rw-r--r--org.eclipse.mat.targetdef/mat-2021-03.target2
-rw-r--r--org.eclipse.mat.targetdef/mat-2021-06.target2
-rw-r--r--parent/pom.xml2
3 files changed, 3 insertions, 3 deletions
diff --git a/org.eclipse.mat.targetdef/mat-2021-03.target b/org.eclipse.mat.targetdef/mat-2021-03.target
index 1514e9fe..d9c8f914 100644
--- a/org.eclipse.mat.targetdef/mat-2021-03.target
+++ b/org.eclipse.mat.targetdef/mat-2021-03.target
@@ -25,7 +25,7 @@
<unit id="org.eclipse.birt.chart.engine.extension" version="0.0.0"/>
<repository location="https://download.eclipse.org/birt/update-site/oxygen-interim/"/>
</location>
-<location includeAllPlatforms="false" includeMode="planner" type="InstallableUnit">
+<location includeAllPlatforms="false" includeMode="planner" includeSource="true" type="InstallableUnit">
<unit id="com.ibm.dtfj.feature.feature.group" version="0.0.0"/>
<repository location="https://public.dhe.ibm.com/ibmdl/export/pub/software/websphere/runtimes/tools/dtfj/"/>
</location>
diff --git a/org.eclipse.mat.targetdef/mat-2021-06.target b/org.eclipse.mat.targetdef/mat-2021-06.target
index 9a486660..6b2d9f9b 100644
--- a/org.eclipse.mat.targetdef/mat-2021-06.target
+++ b/org.eclipse.mat.targetdef/mat-2021-06.target
@@ -25,7 +25,7 @@
<unit id="org.eclipse.birt.chart.engine.extension" version="0.0.0"/>
<repository location="https://download.eclipse.org/birt/update-site/oxygen-interim/"/>
</location>
-<location includeAllPlatforms="false" includeMode="planner" type="InstallableUnit">
+<location includeAllPlatforms="false" includeMode="planner" includeSource="true" type="InstallableUnit">
<unit id="com.ibm.dtfj.feature.feature.group" version="0.0.0"/>
<repository location="https://public.dhe.ibm.com/ibmdl/export/pub/software/websphere/runtimes/tools/dtfj/"/>
</location>
diff --git a/parent/pom.xml b/parent/pom.xml
index 55c56c5c..9dddd5bc 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -23,7 +23,7 @@
<name>MAT Parent</name>
<properties>
- <tycho-version>1.7.0</tycho-version>
+ <tycho-version>2.0.0</tycho-version>
<signer-input-directory>/home/data/httpd/download-staging.priv/tools/mat</signer-input-directory>
<download-publish-path>/home/data/httpd/download.eclipse.org/mat/snapshots/update-site</download-publish-path>
<download-remote-publish-path>genie.mat@projects-storage.eclipse.org:/home/data/httpd/download.eclipse.org/mat/snapshots/update-site</download-remote-publish-path>

Back to the top