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

build: utilizing new java version, but still building with language level 8 #1205

Merged
merged 10 commits into from
Feb 20, 2025

Conversation

aepfli
Copy link
Member

@aepfli aepfli commented Feb 8, 2025

build runs on 2 different java versions:

  • 17: all tests and code quality tools
  • 8: all tests

build target is version 8, but we use java 17 to generate the packages.

We can at least update checkstyle, spotless, pmd, spotbugs to newer versions, but junit, mockito, assertj, cucumber, can not be updated as we are still running the tests with java 8. Tests are not compiled on java8 so we could update all our test dependencies too. eg. i update mockito to version 5 within this pr

Theoretically, we could not run tests with java8 and only build, to ensure api compatibility :)

as the build is strangely not working now in here - see https://github.com/open-feature-forking/java-sdk-contrib/actions/runs/13217059965 of my fork

how to test:

# java 17 and above
mvn verify

#java8 
mvn verify -Pjava8

if you want to test, that this wont build successfully on java 8 with newer features, use eg. String.isBlank() (java 11) on any string and try to build with java8 :) it will even fail with the default build, informing you, that this is not supported by the language level 8.

Additional findings:

With this approach we could build everything with Java 17, but target with the release option the desired java version. This would allow different providers to have different baselines. Eg. some providers might want to upgrade to java 11 already. Giving our providers more flexibility overall.

Todos:

  • adapt release please config

@aepfli aepfli force-pushed the feat/build-magic branch 2 times, most recently from e70216e to 7e44197 Compare February 8, 2025 15:37
@aepfli aepfli changed the title build: java build magic build: java build magic with different versions Feb 8, 2025
@aepfli aepfli force-pushed the feat/build-magic branch 4 times, most recently from bf97951 to 3f0e51b Compare February 8, 2025 18:30
Copy link
Member

@toddbaert toddbaert left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

So from my perspective, this:

  • allows us to support newer Java versions in dev environments
  • allows us to use newer Java versions in CI, in order to use later versions of various plugins
  • ensures that we build Java8-compatible bytecode in our release
  • ensures that we don't use any >Java8 APIs via the new maven.compiler option you added

I think this is a great path forward and a huge DX improvement. Thanks a lot!

@aepfli aepfli marked this pull request as ready for review February 12, 2025 15:32
@aepfli aepfli requested a review from a team as a code owner February 12, 2025 15:32
@aepfli aepfli changed the title build: java build magic with different versions build: utilizing new java version, but still building with language level 8 Feb 12, 2025
Signed-off-by: Simon Schrottner <[email protected]>
aepfli and others added 8 commits February 19, 2025 16:04
Signed-off-by: Simon Schrottner <[email protected]>
Signed-off-by: Simon Schrottner <[email protected]>
Signed-off-by: Simon Schrottner <[email protected]>
Co-authored-by: Todd Baert <[email protected]>
Signed-off-by: Simon Schrottner <[email protected]>
Co-authored-by: Todd Baert <[email protected]>
Signed-off-by: Simon Schrottner <[email protected]>
@aepfli
Copy link
Member Author

aepfli commented Feb 19, 2025

@toddbaert @chrfwow should we move forward with this, as the sdk seems to be working with the new build magic, i am pretty sure we can also move forward with this one. wdyt?

@chrfwow
Copy link
Contributor

chrfwow commented Feb 20, 2025

Changes look good and so does the pipeline, I think we are good to go 🚀

@aepfli aepfli merged commit 9501b3d into open-feature:main Feb 20, 2025
5 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

7 participants