Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Keller2016-03-07 15:35:58 +0000
committerMarkus Keller2016-03-07 15:35:58 +0000
commit284bed5784444ccd80e596ba3156e64120e3c4ce (patch)
treeda0067471212a6d641ac65592810f4d4e3512383
parent5c1ed7eb4583e931eb5f34556d1a0023e0e6e402 (diff)
downloadeclipse.platform.debug-284bed5784444ccd80e596ba3156e64120e3c4ce.tar.gz
eclipse.platform.debug-284bed5784444ccd80e596ba3156e64120e3c4ce.tar.xz
eclipse.platform.debug-284bed5784444ccd80e596ba3156e64120e3c4ce.zip
Bug 483395: Don't ignore unavoidableGenericProblems in production code by default
-rw-r--r--org.eclipse.debug.ui/pom.xml17
1 files changed, 3 insertions, 14 deletions
diff --git a/org.eclipse.debug.ui/pom.xml b/org.eclipse.debug.ui/pom.xml
index f890362d1..51e17628b 100644
--- a/org.eclipse.debug.ui/pom.xml
+++ b/org.eclipse.debug.ui/pom.xml
@@ -20,18 +20,7 @@
<artifactId>org.eclipse.debug.ui</artifactId>
<version>3.11.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:+resource</arg>
- </compilerArgs>
- </configuration>
- </plugin>
- </plugins>
- </build>
+ <properties>
+ <code.ignoredWarnings>-warn:+resource</code.ignoredWarnings>
+ </properties>
</project>

Back to the top