Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Vogel2016-11-01 14:56:11 +0000
committerLars Vogel2016-11-30 09:52:16 +0000
commit85dfb875d274e4cbcb44d29756e803a8daf0c6b6 (patch)
tree8ef46e1c425b876e6ba789594ac5bf39b14efc08
parent5317027e77bcc7c3e18ecb7a9da0a299ee7cae61 (diff)
downloadeclipse.platform.runtime-85dfb875d274e4cbcb44d29756e803a8daf0c6b6.tar.gz
eclipse.platform.runtime-85dfb875d274e4cbcb44d29756e803a8daf0c6b6.tar.xz
eclipse.platform.runtime-85dfb875d274e4cbcb44d29756e803a8daf0c6b6.zip
Bug 506778 - Enable project specific checks for Platform UI project forY20161201-1000I20161201-0800I20161130-2000
the Gerrit validation build This change activates the project error checks for eclipse.platform.runtime Change-Id: Ib15d94fe20c6d03ca5a22cf22e6050c055ccbf80 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
-rw-r--r--pom.xml17
1 files changed, 17 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index d0f972eac..238a87021 100644
--- a/pom.xml
+++ b/pom.xml
@@ -49,6 +49,23 @@
<url>https://repo.eclipse.org/content/repositories/eclipse/</url>
</repository>
</repositories>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-compiler-plugin</artifactId>
+ <version>${tycho.version}</version>
+ <configuration>
+ <!-- Do not use useProjectSettings; it'll always override -nowarn -->
+ <compilerArgs>
+ <arg>-properties</arg>
+ <arg>${project.basedir}/.settings/org.eclipse.jdt.core.prefs</arg>
+ <arg>-nowarn</arg>
+ </compilerArgs>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
</profile>
</profiles>

Back to the top