Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2016-11-07 14:53:53 +0000
committerThomas Watson2016-11-07 15:53:18 +0000
commit58ee80c18bcaefd043048b207ca196f5c923fed4 (patch)
treead32bc2905daa0122e006a7fe111035f92c89ad4
parent747642bf9b3d754108a07a22975f2f221cd569c3 (diff)
downloadrt.equinox.framework-58ee80c18bcaefd043048b207ca196f5c923fed4.tar.gz
rt.equinox.framework-58ee80c18bcaefd043048b207ca196f5c923fed4.tar.xz
rt.equinox.framework-58ee80c18bcaefd043048b207ca196f5c923fed4.zip
bug 507055 - Ignore optional compile problems Java build path option not
honored Change-Id: I57f5a137689df0c01504d2c03de297e2af8e0e5d Signed-off-by: Thomas Watson <tjwatson@us.ibm.com>
-rw-r--r--bundles/org.eclipse.osgi.services/pom.xml2
-rw-r--r--bundles/org.eclipse.osgi.util/pom.xml2
-rw-r--r--bundles/org.eclipse.osgi/pom.xml2
3 files changed, 3 insertions, 3 deletions
diff --git a/bundles/org.eclipse.osgi.services/pom.xml b/bundles/org.eclipse.osgi.services/pom.xml
index 346d65c7b..bead54ccb 100644
--- a/bundles/org.eclipse.osgi.services/pom.xml
+++ b/bundles/org.eclipse.osgi.services/pom.xml
@@ -29,7 +29,7 @@
<version>${tycho.version}</version>
<configuration>
<compilerArgs>
- <arg>-warn:-raw,unchecked</arg>
+ <arg>-nowarn:[${project.basedir}/src]</arg>
</compilerArgs>
</configuration>
</plugin>
diff --git a/bundles/org.eclipse.osgi.util/pom.xml b/bundles/org.eclipse.osgi.util/pom.xml
index 45c35917c..3be91f5c1 100644
--- a/bundles/org.eclipse.osgi.util/pom.xml
+++ b/bundles/org.eclipse.osgi.util/pom.xml
@@ -29,7 +29,7 @@
<version>${tycho.version}</version>
<configuration>
<compilerArgs>
- <arg>-warn:-raw,unchecked</arg>
+ <arg>-nowarn:[${project.basedir}/src]</arg>
</compilerArgs>
</configuration>
</plugin>
diff --git a/bundles/org.eclipse.osgi/pom.xml b/bundles/org.eclipse.osgi/pom.xml
index 1d862f927..793b913e4 100644
--- a/bundles/org.eclipse.osgi/pom.xml
+++ b/bundles/org.eclipse.osgi/pom.xml
@@ -30,7 +30,7 @@
<version>${tycho.version}</version>
<configuration>
<compilerArgs>
- <arg>-warn:-raw,unchecked,hiding,unused,warningToken,serial</arg>
+ <arg>-nowarn:[${project.basedir}/osgi/src${path.separator}${project.basedir}/felix/src]</arg>
</compilerArgs>
</configuration>
</plugin>

Back to the top