Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Ross2013-10-11 14:31:34 +0000
committerJohn Ross2013-10-23 12:43:40 +0000
commit991b5bda78bf294034a20b859b421a76ff616758 (patch)
tree51ef0a7d063f232c01c5cbb48c2e426a7f9e636b /bundles/org.eclipse.osgi.util/pom.xml
parent20cfc5e6d8e689111864c8a8bc6fc58d70f3f504 (diff)
downloadrt.equinox.framework-991b5bda78bf294034a20b859b421a76ff616758.tar.gz
rt.equinox.framework-991b5bda78bf294034a20b859b421a76ff616758.tar.xz
rt.equinox.framework-991b5bda78bf294034a20b859b421a76ff616758.zip
Bug 418663 - [util] Get rid of compile warnings in official build
Update jdt core prefs to org.eclipse.jdt.core.compiler.problem.unavoidableGenericTypeProblems=disabled. Suppress warnings in pom for official build.
Diffstat (limited to 'bundles/org.eclipse.osgi.util/pom.xml')
-rw-r--r--bundles/org.eclipse.osgi.util/pom.xml16
1 files changed, 15 insertions, 1 deletions
diff --git a/bundles/org.eclipse.osgi.util/pom.xml b/bundles/org.eclipse.osgi.util/pom.xml
index bee575bd9..cafeeac65 100644
--- a/bundles/org.eclipse.osgi.util/pom.xml
+++ b/bundles/org.eclipse.osgi.util/pom.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
- Copyright (c) 2012 Eclipse Foundation.
+ Copyright (c) 2012, 2013 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
@@ -21,4 +21,18 @@
<artifactId>org.eclipse.osgi.util</artifactId>
<version>3.3.0-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