Repository: apex-core Updated Branches: refs/heads/master d9bc67d5a -> 99d3a9538
APEXCORE-605 Suppress bootstrap compiler warning Project: http://git-wip-us.apache.org/repos/asf/apex-core/repo Commit: http://git-wip-us.apache.org/repos/asf/apex-core/commit/4eb8a5dd Tree: http://git-wip-us.apache.org/repos/asf/apex-core/tree/4eb8a5dd Diff: http://git-wip-us.apache.org/repos/asf/apex-core/diff/4eb8a5dd Branch: refs/heads/master Commit: 4eb8a5dd57d1401ca87340cdb754eecf23f799b4 Parents: 05c798d Author: Vlad Rozov <[email protected]> Authored: Mon Jan 9 09:25:10 2017 -0800 Committer: Vlad Rozov <[email protected]> Committed: Mon Jan 9 18:30:56 2017 -0800 ---------------------------------------------------------------------- pom.xml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/apex-core/blob/4eb8a5dd/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index a219d1a..d83d0f2 100644 --- a/pom.xml +++ b/pom.xml @@ -144,6 +144,9 @@ <optimize>true</optimize> <showDeprecation>true</showDeprecation> <showWarnings>true</showWarnings> + <compilerArgs> + <arg>-Xlint:-options</arg><!-- suppress javac warning for missing bootstrap --> + </compilerArgs> </configuration> </plugin> <plugin> @@ -169,8 +172,6 @@ <ignores> <ignore>sun.misc.Unsafe</ignore> <ignore>sun.misc.Signal</ignore> - <ignore>java.util.zip.Deflater</ignore> - <ignore>java.util.concurrent.LinkedTransferQueue</ignore> </ignores> </configuration> <executions>
