Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2016-11-07 16:01:26 +0000
committerThomas Watson2016-11-07 16:01:26 +0000
commit4d17de123e8314589b9792ea7a3325f3ae77af5b (patch)
tree1fe19304acf0ff62b23270b4e92ab33b40970345
parent49c8f08db1f396fda44605dfdcee9a924fa48a0c (diff)
downloadrt.equinox.bundles-I20161121-2000.tar.gz
rt.equinox.bundles-I20161121-2000.tar.xz
rt.equinox.bundles-I20161121-2000.zip
for Tycho too Change-Id: Ib903e0ce455f6edc1d4fc8c6e3b2497bdf124a7a Signed-off-by: Thomas Watson <tjwatson@us.ibm.com>
-rw-r--r--bundles/org.eclipse.equinox.app/pom.xml17
-rw-r--r--bundles/org.eclipse.equinox.coordinator/pom.xml2
-rw-r--r--bundles/org.eclipse.equinox.io/pom.xml14
3 files changed, 29 insertions, 4 deletions
diff --git a/bundles/org.eclipse.equinox.app/pom.xml b/bundles/org.eclipse.equinox.app/pom.xml
index 7be6c6c28..e3ece7cc0 100644
--- a/bundles/org.eclipse.equinox.app/pom.xml
+++ b/bundles/org.eclipse.equinox.app/pom.xml
@@ -21,7 +21,18 @@
<artifactId>org.eclipse.equinox.app</artifactId>
<version>1.3.400-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
- <properties>
- <code.ignoredWarnings>-warn:-unusedPrivate,deprecation</code.ignoredWarnings>
- </properties>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-compiler-plugin</artifactId>
+ <version>${tycho.version}</version>
+ <configuration>
+ <compilerArgs>
+ <arg>-nowarn:[${project.basedir}/osgi]</arg>
+ </compilerArgs>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
</project>
diff --git a/bundles/org.eclipse.equinox.coordinator/pom.xml b/bundles/org.eclipse.equinox.coordinator/pom.xml
index 485c63df5..76b87d292 100644
--- a/bundles/org.eclipse.equinox.coordinator/pom.xml
+++ b/bundles/org.eclipse.equinox.coordinator/pom.xml
@@ -29,7 +29,7 @@
<version>${tycho.version}</version>
<configuration>
<compilerArgs>
- <arg>-warn:-unchecked</arg>
+ <arg>-nowarn:[${project.basedir}/osgi]</arg>
</compilerArgs>
</configuration>
</plugin>
diff --git a/bundles/org.eclipse.equinox.io/pom.xml b/bundles/org.eclipse.equinox.io/pom.xml
index 1d9dc6ec8..3f32c3ff8 100644
--- a/bundles/org.eclipse.equinox.io/pom.xml
+++ b/bundles/org.eclipse.equinox.io/pom.xml
@@ -21,4 +21,18 @@
<artifactId>org.eclipse.equinox.io</artifactId>
<version>1.1.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>-nowarn:[${project.basedir}/osgi]</arg>
+ </compilerArgs>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
</project>

Back to the top