Skip to content
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

Merged
merged 1 commit into from
Aug 16, 2024

Conversation

kwin
Copy link
Member

@kwin kwin commented Aug 16, 2024

Adjust minimalJavaBuildVersion to be in line with target bytecode version.

This closes #250

Adjust minimalJavaBuildVersion to be in line with target bytecode version.

This closes #250
@kwin kwin requested a review from slawekjaranowski August 16, 2024 10:18
@kwin kwin merged commit ded34a8 into master Aug 16, 2024
10 checks passed
@kwin kwin deleted the feature/improve-minimialJavaBuildVersion-default branch August 16, 2024 12:43
@slawekjaranowski slawekjaranowski added this to the ASF-34 milestone Aug 16, 2024
@ctubbsii
Copy link
Member

ctubbsii commented Aug 16, 2024

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 maven.compiler.release property out of the JDK9 profile and into the main props in the POM. That would make it difficult to use this POM with JDK versions earlier than 11, but would greatly improve cross-compilation issues for projects that still want to target Java versions earlier than 9.

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 -->

@slawekjaranowski slawekjaranowski added the enhancement New feature or request label Aug 17, 2024
@kwin
Copy link
Member Author

kwin commented Aug 18, 2024

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,

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 maven-compiler-release property is already correctly set in the parent POM (in a dedicated Java9 profile), so in case something does not work as expected here please raise a new issue @ctubbsii.

@ctubbsii
Copy link
Member

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,

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.

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.

  1. targetVersion < buildVersion && buildVersion < 9 && bootstrapClasspathIsSet: SAFE
  2. targetVersion < buildVersion && buildVersion < 9 && !bootstrapClasspathIsSet (before this PR): UNSAFE
  3. targetVersion == buildVersion (after this PR): SAFE
  4. targetVersion <= buildVersion && buildVersion >= 9 && releaseFlagIsUsed: SAFE (== is "not very important"; < is sufficient)

The maven-compiler-release property is already correctly set in the parent POM (in a dedicated Java9 profile), so in case something does not work as expected here please raise a new issue @ctubbsii.

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.

@kwin
Copy link
Member Author

kwin commented Aug 18, 2024

For me

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,

sounds different. For me the default should always match the target version (no matter which JDK you are building with)!

@ctubbsii
Copy link
Member

ctubbsii commented Aug 18, 2024

For me

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,

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).

@kwin
Copy link
Member Author

kwin commented Aug 18, 2024

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
breaking enhancement New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Set more reasonable default for property "minimalJavaBuildVersion"
3 participants