jscancella / bagging

A clean and easy to use implementation of the BagIt specification
Other
2 stars 7 forks source link

upgrade to java 14 #15

Closed jscancella closed 4 years ago

jscancella commented 5 years ago

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

jscancella commented 4 years ago

blocked by https://github.com/spotbugs/spotbugs/issues/878

jscancella commented 4 years ago

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>
jscancella commented 4 years ago

With the release of 4.1.3 this is no longer blocked. https://github.com/spotbugs/spotbugs/issues/878#event-3806431259

jscancella commented 4 years ago

completed with PR #22