Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Vogel2015-10-07 08:01:43 +0000
committerLars Vogel2015-10-08 07:52:27 +0000
commitaedcb52456429a837326827130c3da1bcabecce4 (patch)
treea2b06dada32bd4becfa34fb0f82e6abd70c518cf /org.eclipse.ui.cheatsheets/pom.xml
parent0ca8bcbdf29b0fb83563d24af02b2c77d3e574f0 (diff)
downloadeclipse.platform.ua-aedcb52456429a837326827130c3da1bcabecce4.tar.gz
eclipse.platform.ua-aedcb52456429a837326827130c3da1bcabecce4.tar.xz
eclipse.platform.ua-aedcb52456429a837326827130c3da1bcabecce4.zip
Bug 479209 - Update org.eclipse.ui.cheatsheets to Java 8
Change-Id: I7a323e978fab1277dcf8bb609623dccbd70a276d Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
Diffstat (limited to 'org.eclipse.ui.cheatsheets/pom.xml')
-rw-r--r--org.eclipse.ui.cheatsheets/pom.xml18
1 files changed, 17 insertions, 1 deletions
diff --git a/org.eclipse.ui.cheatsheets/pom.xml b/org.eclipse.ui.cheatsheets/pom.xml
index 2bd871cd6..a144d810c 100644
--- a/org.eclipse.ui.cheatsheets/pom.xml
+++ b/org.eclipse.ui.cheatsheets/pom.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
- Copyright (c) 2012 Eclipse Foundation.
+ Copyright (c) 2012, 2015 Eclipse Foundation.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Distribution License v1.0
which accompanies this distribution, and is available at
@@ -8,6 +8,7 @@
Contributors:
Igor Fedorenko - initial implementation
+ Lars Vogel <Lars.Vogel@vogella.com> - Bug
-->
<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">
<modelVersion>4.0.0</modelVersion>
@@ -20,4 +21,19 @@
<artifactId>org.eclipse.ui.cheatsheets</artifactId>
<version>3.4.200-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-compiler-plugin</artifactId>
+ <version>${tycho.version}</version>
+ <configuration>
+ <compilerArgs>
+ <arg>-warn:-raw,unchecked</arg>
+ </compilerArgs>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
</project>

Back to the top