Skip to content

Commit 9a5823c

Browse files
committed
Bug 474156 - Run API Tools builder in the Gerrit verification build
Change-Id: I7fc676d1c3b8f2d69ca434cce21231687f2b8cae Signed-off-by: Mickael Istria <[email protected]>
1 parent 03b1cc2 commit 9a5823c

File tree

22 files changed

+68
-5
lines changed

22 files changed

+68
-5
lines changed

bundles/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
/.project
2+
/target/

bundles/org.eclipse.e4.ui.progress/pom.xml

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121

2222
<properties>
2323
<code.ignoredWarnings>-warn:-deprecation,raw,unchecked</code.ignoredWarnings>
24+
<skipAPIAnalysis>true</skipAPIAnalysis> <!-- Not in baseline -->
2425
</properties>
2526

2627
</project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
eclipse.preferences.version=1
2+
compilers.p.unresolved-ex-points=1

bundles/org.eclipse.e4.ui.swt.gtk/pom.xml

+5
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@
2121
<artifactId>org.eclipse.e4.ui.swt.gtk</artifactId>
2222
<version>1.0.600-SNAPSHOT</version>
2323
<packaging>eclipse-plugin</packaging>
24+
25+
<properties>
26+
<skipAPIAnalysis>true</skipAPIAnalysis>
27+
</properties>
28+
2429
<build>
2530
<plugins>
2631
<!-- tycho is not able to automatically determine os/ws/arch of this bundle -->

bundles/org.eclipse.e4.ui.workbench.renderers.swt.cocoa/pom.xml

+5
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@
2121
<artifactId>org.eclipse.e4.ui.workbench.renderers.swt.cocoa</artifactId>
2222
<version>0.12.300-SNAPSHOT</version>
2323
<packaging>eclipse-plugin</packaging>
24+
25+
<properties>
26+
<skipAPIAnalysis>true</skipAPIAnalysis>
27+
</properties>
28+
2429
<build>
2530
<plugins>
2631
<!-- tycho is not able to automatically determine os/ws/arch of this bundle -->

bundles/org.eclipse.e4.ui.workbench.swt/.settings/org.eclipse.pde.prefs

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ compilers.p.unknown-class=1
2424
compilers.p.unknown-element=1
2525
compilers.p.unknown-identifier=1
2626
compilers.p.unknown-resource=1
27-
compilers.p.unresolved-ex-points=0
27+
compilers.p.unresolved-ex-points=1
2828
compilers.p.unresolved-import=0
2929
compilers.s.create-docs=false
3030
compilers.s.doc-folder=doc

bundles/org.eclipse.e4.ui.workbench/.settings/org.eclipse.pde.prefs

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ compilers.p.unknown-class=1
2424
compilers.p.unknown-element=1
2525
compilers.p.unknown-identifier=1
2626
compilers.p.unknown-resource=1
27-
compilers.p.unresolved-ex-points=0
27+
compilers.p.unresolved-ex-points=1
2828
compilers.p.unresolved-import=0
2929
compilers.s.create-docs=false
3030
compilers.s.doc-folder=doc

bundles/org.eclipse.ui.cocoa/pom.xml

+5
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@
2222
<artifactId>org.eclipse.ui.cocoa</artifactId>
2323
<version>1.2.200-SNAPSHOT</version>
2424
<packaging>eclipse-plugin</packaging>
25+
26+
<properties>
27+
<skipAPIAnalysis>true</skipAPIAnalysis>
28+
</properties>
29+
2530
<build>
2631
<plugins>
2732
<!-- tycho is not able to automatically determine os/ws/arch of this bundle -->

bundles/org.eclipse.ui.win32/pom.xml

+5
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@
2121
<artifactId>org.eclipse.ui.win32</artifactId>
2222
<version>3.4.200-SNAPSHOT</version>
2323
<packaging>eclipse-plugin</packaging>
24+
25+
<properties>
26+
<skipAPIAnalysis>true</skipAPIAnalysis>
27+
</properties>
28+
2429
<build>
2530
<plugins>
2631
<!-- tycho is not able to automatically determine os/ws/arch of this bundle -->

bundles/org.eclipse.ui.workbench/.settings/org.eclipse.pde.prefs

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ compilers.p.unknown-class=1
2525
compilers.p.unknown-element=1
2626
compilers.p.unknown-identifier=1
2727
compilers.p.unknown-resource=1
28-
compilers.p.unresolved-ex-points=0
28+
compilers.p.unresolved-ex-points=1
2929
compilers.p.unresolved-import=0
3030
compilers.p.unused-element-or-attribute=1
3131
compilers.s.create-docs=false

examples/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
/.project
2+
/target/
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<parent>
5+
<artifactId>eclipse.platform.ui</artifactId>
6+
<groupId>eclipse.platform.ui</groupId>
7+
<version>4.13.0-SNAPSHOT</version>
8+
<relativePath>../../</relativePath>
9+
</parent>
10+
<groupId>org.eclipse.ui.examples</groupId>
11+
<artifactId>org.eclipse.e4.demo.cssbridge</artifactId>
12+
<version>1.1.100-SNAPSHOT</version>
13+
<packaging>eclipse-plugin</packaging>
14+
15+
<properties>
16+
<skipAPIAnalysis>true</skipAPIAnalysis> <!-- Not in baseline -->
17+
</properties>
18+
19+
</project>

examples/org.eclipse.jface.snippets/pom.xml

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424

2525
<properties>
2626
<code.ignoredWarnings>-warn:-deprecation,raw,unchecked</code.ignoredWarnings>
27+
<skipAPIAnalysis>true</skipAPIAnalysis> <!-- Not in baseline -->
2728
</properties>
2829

2930
</project>

examples/org.eclipse.ui.examples.job/pom.xml

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
<packaging>eclipse-plugin</packaging>
2424

2525
<properties>
26+
<skipAPIAnalysis>true</skipAPIAnalysis> <!-- Not in baseline -->
2627
<code.ignoredWarnings>-warn:-deprecation,raw,unchecked</code.ignoredWarnings>
2728
</properties>
2829

examples/org.eclipse.ui.examples.navigator/pom.xml

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
<packaging>eclipse-plugin</packaging>
2424

2525
<properties>
26+
<skipAPIAnalysis>true</skipAPIAnalysis> <!-- Not in baseline -->
2627
<code.ignoredWarnings>-warn:-deprecation,raw,unchecked</code.ignoredWarnings>
2728
</properties>
2829
</project>

examples/org.eclipse.ui.forms.examples/pom.xml

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
<packaging>eclipse-plugin</packaging>
2424

2525
<properties>
26+
<skipAPIAnalysis>true</skipAPIAnalysis> <!-- Not in baseline -->
2627
<code.ignoredWarnings>-warn:-deprecation,raw,unchecked</code.ignoredWarnings>
2728
</properties>
2829

tests/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
/.project
22
org.eclipse.ui.tests/data/org.eclipse.datatransferArchives/**/.project
3+
/target/

tests/org.eclipse.e4.emf.xpath.test/pom.xml

+4
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,8 @@
2222
<version>0.2.100-SNAPSHOT</version>
2323
<packaging>eclipse-test-plugin</packaging>
2424

25+
<properties>
26+
<skipAPIAnalysis>true</skipAPIAnalysis> <!-- Not in baseline -->
27+
</properties>
28+
2529
</project>

tests/org.eclipse.e4.ui.workbench.addons.swt.test/pom.xml

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@
2222
<packaging>eclipse-test-plugin</packaging>
2323

2424
<properties>
25-
<unitTestSuite>org.eclipse.e4.ui.workbench.addons.swt.test.AllTests</unitTestSuite>
25+
<unitTestSuite>org.eclipse.e4.ui.workbench.addons.swt.test.AllTests</unitTestSuite>
26+
<skipAPIAnalysis>true</skipAPIAnalysis> <!-- Not in baseline -->
2627
</properties>
2728

2829
<build>

tests/org.eclipse.jface.tests/pom.xml

+4
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,8 @@
2121
<version>1.0.0-SNAPSHOT</version>
2222
<packaging>eclipse-test-plugin</packaging>
2323

24+
<properties>
25+
<skipAPIAnalysis>true</skipAPIAnalysis> <!-- Not in baseline -->
26+
</properties>
27+
2428
</project>

tests/org.eclipse.ui.ide.application.tests/pom.xml

+4
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@
2222
<version>1.2.200-SNAPSHOT</version>
2323
<packaging>eclipse-test-plugin</packaging>
2424

25+
<properties>
26+
<skipAPIAnalysis>true</skipAPIAnalysis> <!-- Not in baseline -->
27+
</properties>
28+
2529
<build>
2630
<plugins>
2731
<plugin>

tests/org.eclipse.ui.monitoring.tests/pom.xml

+2-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@
2525
<packaging>eclipse-test-plugin</packaging>
2626

2727
<properties>
28-
<unitTestSuite>org.eclipse.ui.internal.monitoring.MonitoringTestSuite</unitTestSuite>
28+
<unitTestSuite>org.eclipse.ui.internal.monitoring.MonitoringTestSuite</unitTestSuite>
29+
<skipAPIAnalysis>true</skipAPIAnalysis> <!-- Not in baseline -->
2930
</properties>
3031

3132
<build>

0 commit comments

Comments
 (0)