diff options
| author | Lars Vogel | 2016-11-01 14:56:11 +0000 |
|---|---|---|
| committer | Lars Vogel | 2016-11-30 09:52:16 +0000 |
| commit | 85dfb875d274e4cbcb44d29756e803a8daf0c6b6 (patch) | |
| tree | 8ef46e1c425b876e6ba789594ac5bf39b14efc08 | |
| parent | 5317027e77bcc7c3e18ecb7a9da0a299ee7cae61 (diff) | |
| download | eclipse.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.xml | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -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> |
