bookkeeper icon indicating copy to clipboard operation
bookkeeper copied to clipboard

[Build] Support property: maven.compiler.release for building BK with higher version JDK

Open Reidddddd opened this issue 2 years ago • 0 comments

FEATURE REQUEST

Starting JDK 9, the javac executable can accept the --release option to specify against which Java SE release you want to build the project.

  1. The --release option ensures that the code is compiled following the rules of the programming language of the specified release, and that generated classes target the release as well as the public API of that release. This means that, unlike the -source and -target options, the compiler will detect and generate an error when using APIs that don't exist in previous releases of Java SE. link

  2. should-have

Reidddddd avatar Sep 26 '23 03:09 Reidddddd