Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDani Megert2013-08-13 10:30:35 +0000
committerDani Megert2013-08-13 10:30:35 +0000
commit51dfee66cce98d83d81b66b093381ae70f919108 (patch)
treef9591eb50cbad10b8709d7b5c1a0ea3b1c35b377
parent06cac25f229fb6bfa3c60dc1354c09d2cbd9a104 (diff)
downloadeclipse.platform.debug-51dfee66cce98d83d81b66b093381ae70f919108.tar.gz
eclipse.platform.debug-51dfee66cce98d83d81b66b093381ae70f919108.tar.xz
eclipse.platform.debug-51dfee66cce98d83d81b66b093381ae70f919108.zip
Another try to get the compiler arguments rightI20130813-0800
-rw-r--r--org.eclipse.debug.ui/pom.xml4
1 files changed, 3 insertions, 1 deletions
diff --git a/org.eclipse.debug.ui/pom.xml b/org.eclipse.debug.ui/pom.xml
index 59ff83807..fa0ab3c07 100644
--- a/org.eclipse.debug.ui/pom.xml
+++ b/org.eclipse.debug.ui/pom.xml
@@ -27,7 +27,9 @@
<artifactId>tycho-compiler-plugin</artifactId>
<version>${tycho.version}</version>
<configuration>
- <compilerArgument>-warn:-deprecation,raw,unchecked -warn:+resource</compilerArgument>
+ <compilerArgs>
+ <arg>-warn:+resource</arg>
+ </compilerArgs>
</configuration>
</plugin>
</plugins>

Back to the top