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

Proof of concept decouple Gradle JDK from compiling JDK #234

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

TWiStErRob
Copy link
Contributor

@TWiStErRob TWiStErRob commented Sep 29, 2024

Note:

  • Gradle 8.x supports 8-23 for running Gradle
  • Gradle 9.x scheduled to support 17-23 for running Gradle

https://docs.gradle.org/current/userguide/compatibility.html

I ran the CI here: TWiStErRob#1 (https://github.com/TWiStErRob/mordant/actions/runs/11092440186)

This enables developers (contributors) to have almost any JDK they want, not just 22/23.

Feel free to close this if you're not interested, it just came out of me trying to build the project and investigate my issues.

Note:
 * Gradle 8.x supports 8-23 for running Gradle
 * Gradle 9.x scheduled to support 17-23 for running Gradle

https://docs.gradle.org/current/userguide/compatibility.html
Comment on lines -439 to -442
public fun addFirst (Lcom/github/ajalt/mordant/rendering/Span;)V
public synthetic fun addFirst (Ljava/lang/Object;)V
public fun addLast (Lcom/github/ajalt/mordant/rendering/Span;)V
public synthetic fun addLast (Ljava/lang/Object;)V
Copy link
Contributor Author

Choose a reason for hiding this comment

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

This is interesting, probably default interface methods?

Comment on lines +54 to +57
javaLauncher = javaToolchains.launcherFor {
languageVersion.set(JavaLanguageVersion.of(22))
vendor = JvmVendorSpec.AZUL // Zulu
}
Copy link
Contributor Author

Choose a reason for hiding this comment

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

@@ -40,7 +40,7 @@ jobs:
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 22
Copy link
Owner

Choose a reason for hiding this comment

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

What's the advantage of changing this version?

Copy link
Contributor

Choose a reason for hiding this comment

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

It'll actually slow down builds because you'll install 17 only to then have to install 22.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Yeah, totally correct. I changed it only to prove that the setup is now independent of what JDK is running the Gradle process.

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.

3 participants