Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMickael Istria2020-06-18 09:06:36 +0000
committerMickael Istria2020-06-18 09:13:24 +0000
commit87250ccbe370e878f8991f50faafd4fe5fb38dcf (patch)
tree89c42f0d07d510256ad7f21e1b9fc5695d5b184b
parent8d0934827c37d55e6a7fbe95109b35d1e78fe44f (diff)
downloadeclipse.platform.ui-87250ccbe370e878f8991f50faafd4fe5fb38dcf.tar.gz
eclipse.platform.ui-87250ccbe370e878f8991f50faafd4fe5fb38dcf.tar.xz
eclipse.platform.ui-87250ccbe370e878f8991f50faafd4fe5fb38dcf.zip
Bug 563846 - Skip API analysis for new Win-specific bundles
This is a workaround for a limitation regarding Eclipse-PlatformFilter when building API baseline. Change-Id: I58a963d9c82c364552dcac7cf095df04581adecf Signed-off-by: Mickael Istria <mistria@redhat.com>
-rw-r--r--bundles/org.eclipse.e4.ui.swt.win32/pom.xml7
-rw-r--r--bundles/org.eclipse.e4.ui.workbench.renderers.swt.cocoa/pom.xml1
-rw-r--r--bundles/org.eclipse.ui.cocoa/pom.xml1
-rw-r--r--bundles/org.eclipse.ui.win32/pom.xml1
4 files changed, 9 insertions, 1 deletions
diff --git a/bundles/org.eclipse.e4.ui.swt.win32/pom.xml b/bundles/org.eclipse.e4.ui.swt.win32/pom.xml
index 09f0f1790cc..7e3b535a296 100644
--- a/bundles/org.eclipse.e4.ui.swt.win32/pom.xml
+++ b/bundles/org.eclipse.e4.ui.swt.win32/pom.xml
@@ -21,7 +21,12 @@
<artifactId>org.eclipse.e4.ui.swt.win32</artifactId>
<version>1.0.700-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
-
+
+ <properties>
+ <!-- See bug 564404 -->
+ <skipAPIAnalysis>true</skipAPIAnalysis>
+ </properties>
+
<build>
<plugins>
<!-- tycho is not able to automatically determine os/ws/arch of this bundle -->
diff --git a/bundles/org.eclipse.e4.ui.workbench.renderers.swt.cocoa/pom.xml b/bundles/org.eclipse.e4.ui.workbench.renderers.swt.cocoa/pom.xml
index 68d4f87ca87..af684d871f8 100644
--- a/bundles/org.eclipse.e4.ui.workbench.renderers.swt.cocoa/pom.xml
+++ b/bundles/org.eclipse.e4.ui.workbench.renderers.swt.cocoa/pom.xml
@@ -23,6 +23,7 @@
<packaging>eclipse-plugin</packaging>
<properties>
+ <!-- See bug 564404 -->
<skipAPIAnalysis>true</skipAPIAnalysis>
</properties>
diff --git a/bundles/org.eclipse.ui.cocoa/pom.xml b/bundles/org.eclipse.ui.cocoa/pom.xml
index 5b9868ffbde..158ffe80cc8 100644
--- a/bundles/org.eclipse.ui.cocoa/pom.xml
+++ b/bundles/org.eclipse.ui.cocoa/pom.xml
@@ -24,6 +24,7 @@
<packaging>eclipse-plugin</packaging>
<properties>
+ <!-- See bug 564404 -->
<skipAPIAnalysis>true</skipAPIAnalysis>
</properties>
diff --git a/bundles/org.eclipse.ui.win32/pom.xml b/bundles/org.eclipse.ui.win32/pom.xml
index 237d3b3a99a..fbfc3f58ca3 100644
--- a/bundles/org.eclipse.ui.win32/pom.xml
+++ b/bundles/org.eclipse.ui.win32/pom.xml
@@ -23,6 +23,7 @@
<packaging>eclipse-plugin</packaging>
<properties>
+ <!-- See bug 564404 -->
<skipAPIAnalysis>true</skipAPIAnalysis>
</properties>

Back to the top