Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDani Megert2013-10-30 16:24:41 +0000
committerDani Megert2013-10-30 16:24:41 +0000
commit5438d8323aa6ff6cc59f5de9f305a490c7392410 (patch)
treeb3448578f9c8b00fdf1569b33523a5d66c23385a
parent6c07c2033e1be50f163a326e31609d9d4323b4b6 (diff)
downloadeclipse.platform.ui-5438d8323aa6ff6cc59f5de9f305a490c7392410.tar.gz
eclipse.platform.ui-5438d8323aa6ff6cc59f5de9f305a490c7392410.tar.xz
eclipse.platform.ui-5438d8323aa6ff6cc59f5de9f305a490c7392410.zip
Disabled raw and unchecked warnings (see bug 418661)I20131030-1400
-rw-r--r--bundles/org.eclipse.jface/pom.xml14
-rw-r--r--bundles/org.eclipse.ui.workbench/pom.xml14
-rw-r--r--examples/org.eclipse.jface.examples.databinding/META-INF/MANIFEST.MF2
-rw-r--r--examples/org.eclipse.jface.examples.databinding/pom.xml18
4 files changed, 45 insertions, 3 deletions
diff --git a/bundles/org.eclipse.jface/pom.xml b/bundles/org.eclipse.jface/pom.xml
index 934f4b8973d..8d112326313 100644
--- a/bundles/org.eclipse.jface/pom.xml
+++ b/bundles/org.eclipse.jface/pom.xml
@@ -21,4 +21,18 @@
<artifactId>org.eclipse.jface</artifactId>
<version>3.10.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>
diff --git a/bundles/org.eclipse.ui.workbench/pom.xml b/bundles/org.eclipse.ui.workbench/pom.xml
index 26aa8916e97..bbc3ea48f3f 100644
--- a/bundles/org.eclipse.ui.workbench/pom.xml
+++ b/bundles/org.eclipse.ui.workbench/pom.xml
@@ -21,4 +21,18 @@
<artifactId>org.eclipse.ui.workbench</artifactId>
<version>3.105.100-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>
diff --git a/examples/org.eclipse.jface.examples.databinding/META-INF/MANIFEST.MF b/examples/org.eclipse.jface.examples.databinding/META-INF/MANIFEST.MF
index de98097a9ca..83bfc1510f0 100644
--- a/examples/org.eclipse.jface.examples.databinding/META-INF/MANIFEST.MF
+++ b/examples/org.eclipse.jface.examples.databinding/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: org.eclipse.jface.examples.databinding
-Bundle-Version: 1.0.200.qualifier
+Bundle-Version: 1.0.300.qualifier
Eclipse-BundleShape: dir
Bundle-ClassPath: .
Bundle-Vendor: %providerName
diff --git a/examples/org.eclipse.jface.examples.databinding/pom.xml b/examples/org.eclipse.jface.examples.databinding/pom.xml
index a7051983f09..ed8eb8db495 100644
--- a/examples/org.eclipse.jface.examples.databinding/pom.xml
+++ b/examples/org.eclipse.jface.examples.databinding/pom.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
- Copyright (c) 2012 Eclipse Foundation.
+ Copyright (c) 2012, 2013 Eclipse Foundation and others.
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
@@ -19,6 +19,20 @@
</parent>
<groupId>org.eclipse.jface</groupId>
<artifactId>org.eclipse.jface.examples.databinding</artifactId>
- <version>1.0.200-SNAPSHOT</version>
+ <version>1.0.300-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