Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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