-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
By default target Java 8 #251
Conversation
Adjust minimalJavaBuildVersion to be in line with target bytecode version. This closes #250
I don't think it's very important to make the minimal Java version match the target version, except in JDK versions earlier than 9, where you also have to set the bootstrap class path to avoid incorrect cross-compilation. So, this change makes sense, so long as the minimalJavaBuildVersion is less than 11 (the first LTS version of JDK after 9 when the release flag was introduced that strictly enforces cross-compilation compatibility with the target version). Since this POM is still dealing with versions earlier than 9, this change makes sense. However, I'm wondering if it might also make sense to bump the minimalJavaBuildVersion to 11, and move the Basically, I'm suggesting: <minimalJavaBuildVersion>11</minimalJavaBuildVersion><!-- first LTS version after 9 when release flag was added -->
<maven.compiler.release>8</maven.compiler.release><!-- because a lot of projects still target 8 -->
<maven.compiler.source>${maven.compiler.release}</maven.compiler.source><!-- because some plugins still use this instead of maven.compiler.release -->
<maven.compiler.target>${maven.compiler.release}</maven.compiler.target><!-- because some plugins still use this instead of maven.compiler.release --> |
I disagree as the target bytecode version is always (except when using toolchains) the lower bound for the build java version. Cross-compilation only works for lower major versions, but not for targeting higher major versions. The |
I don't understand what you're disagreeing with. I already know that it's the lower bound and never questioned that. The only thing I was discussing was when it's important to be an exact match.
Yes, I know. I directly referenced that profile in what I wrote above. It works fine. I think I'm being misunderstood. All I'm suggesting (for discussion) is whether we should go even further than this PR does, and make the minimalJavaBuildVersion default to 11 (item 4 above). I can propose that in a new PR, but I thought I'd get feedback in a comment here first. |
For me
sounds different. For me the default should always match the target version (no matter which JDK you are building with)! |
Some plugins require newer Java build versions than the project. I frequently find myself in a situation where my project targets 8, but the build quality Maven plugins require 11. Also, as I've pointed out in other places, JDK 11 actually enforces the JLS for Java 8 more strictly than JDK 8 does. So, even if you're targeting 8, you're better off building with 11 using the release flag set to 8, if you want a strictly compliant Java 8 application that is maximally portable (OpenJDK 8 and Oracle JDK 8 both let some internal APIs leak into the compile time classpath that are in violation of the JLS 8 spec, but OpenJDK 11 with the release flag set to 8 does not allow those illegal internal APIs). |
You are talking about edge cases, I am talking about a reasonable default. And the most reasonable thing for now is having the minimum version by default(!) being the target version. However this is not the suitable format for discussions. Feel free to open another issue for other topics. |
Adjust minimalJavaBuildVersion to be in line with target bytecode version.
This closes #250