Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Keller2015-12-15 11:24:22 +0000
committerMarkus Keller2015-12-15 11:24:22 +0000
commit94ed4c3938152c36917a25304ef133bec172dca2 (patch)
tree372b153012fb49e8aeeb99b62cd278c014d06bf2
parentde4bf9c5eba09cc96250016789032fbad49f4d1b (diff)
downloadeclipse.platform.releng.aggregator-94ed4c3938152c36917a25304ef133bec172dca2.tar.gz
eclipse.platform.releng.aggregator-94ed4c3938152c36917a25304ef133bec172dca2.tar.xz
eclipse.platform.releng.aggregator-94ed4c3938152c36917a25304ef133bec172dca2.zip
Reverted bug 483395 for I-build: Don't ignore unavoidableGenericProblems in production code by default
added code.ignoredWarningsUnavoidable property
-rw-r--r--eclipse-platform-parent/pom.xml14
1 files changed, 11 insertions, 3 deletions
diff --git a/eclipse-platform-parent/pom.xml b/eclipse-platform-parent/pom.xml
index 1e1a790f3..92824791d 100644
--- a/eclipse-platform-parent/pom.xml
+++ b/eclipse-platform-parent/pom.xml
@@ -120,12 +120,20 @@
by ${code.ignoredWarnings} (see further down).
Good citizens don't override those default settings for their production bundles.
-->
- <code.ignoredWarnings>-warn:-deprecation</code.ignoredWarnings>
+ <code.ignoredWarnings>-warn:-deprecation,unavoidableGenericProblems</code.ignoredWarnings>
+
+ <!--
+ Production bundles that need to suppress unavoidableGenericProblems can set this at the top of their pom.xml:
+ <properties>
+ <code.ignoredWarnings>${code.ignoredWarningsUnavoidable}</code.ignoredWarnings>
+ </properties>
+ -->
+ <code.ignoredWarningsUnavoidable>-warn:-deprecation,unavoidableGenericProblems</code.ignoredWarningsUnavoidable>
<!--
- Test bundles may override the list of ignored warnings by setting the <code.ignoredWarnings> property to ${tests.ignoredWarnings}:
+ Test bundles may override the list of ignored warnings by setting this at the top of their pom.xml:
<properties>
- <code.ignoredWarnings>${tests.ignoredWarnings}</code.ignoredWarnings>
+ <code.ignoredWarnings>${tests.ignoredWarnings}</code.ignoredWarnings>
</properties>
Good citizens use those default settings for their test bundles.
-->

Back to the top