jscancella/bagging

upgrade to java 14

Closed this issue · 4 comments

java 1.8 is EOL. Move to openJDK 14 and continually upgrade to latest version.

  • update gradle to output source as latest java and java 8
  • update CI configs to also run on latest java
  • modularize based on the various packages?

Workaround: use an exclude filter for findbugs:

<!-- False positive with Java 11 https://github.com/spotbugs/spotbugs/issues/878 -->
  <Match>
    <Bug pattern="RCN_REDUNDANT_NULLCHECK_WOULD_HAVE_BEEN_A_NPE" />
  </Match>

With the release of 4.1.3 this is no longer blocked.
spotbugs/spotbugs#878 (comment)

completed with PR #22