lkishalmi commented on code in PR #7215:
URL: https://github.com/apache/netbeans/pull/7215#discussion_r1550221370
##########
extide/gradle/apichanges.xml:
##########
@@ -83,6 +83,22 @@ is the proper place.
<!-- ACTUAL CHANGES BEGIN HERE: -->
<changes>
+ <change id="gradle-init-javaversion">
+ <api name="general"/>
+ <summary>Gradle InitOperation now Supports --java-version and
--comments flags</summary>
Review Comment:
That just puts the following into `build.gradle`
```groovy
// Apply a specific Java toolchain to ease working on different environments.
java {
toolchain {
languageVersion = JavaLanguageVersion.of(22)
}
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists