-
Notifications
You must be signed in to change notification settings - Fork 168
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
Vaadin-gradle-plugin does not support Gradle Toolchains #19338
Comments
We are not currently sure if the fact that Vaadin Gradle plugin doesn't respect it / support it is a bug or feature. @mvysny do you have an idea/suggestion how to treat this issue? |
I do not know much about toolchains, but from what I read at https://docs.gradle.org/current/userguide/toolchains.html , it's a way to compile your project using a different JVM than the one running Gradle itself. In such case vaadin-gradle-plugin should then honor toolchain setting. However, that means that the class processing code (which means Flow plugin code) must run on the toolchain java rather than Gradle java, and I have no idea how that works. Needs investigating how this could be achieved, hopefully using support from Gradle itself. |
@mvysny @mshabarov @mcollovati I forked the flow-gradle-plugin and rewrote it to support Gradle's Java toolchains. The code is just a proof of concept and is unsuitable for a PR. I wanted to run some ideas by you about my POC to see if you are interested in me creating a PR for this feature or alternatively you can use the ideas below as part of your own investigation. Details of the POCConvert VaadinBuildFrontendTask to the Worker APIGradle's Worker API allows us to configure a desired level of isolation such that work can be executed in an isolated process.
I have successfully tested my POC and built a Vaadin front end containing Java 21 code (with toolchains configured) with Gradle running on JDK 17. I would appreciate any comments you may have on my proposed implementation and whether you feel that it would be worth me spending time to create a production-ready PR for you. Simon |
@sihutch thank you very much for taking the time to look into this issue. At a first glance, it seems a great improvement and a PR is definitely worth it. |
Hi @mcollovati, @mvysny, @mshabarov I've prepared PR #19789 based on example that @sihutch demonstrated earlier in this conversation. |
Description of the bug
UI project utilizing vaadin-gradle-plugin fails to build on vaadinBuildFrontend task, when Gradle toolchains configured to higher version of java. e.g JAVA_HOME is java 11, toolchain version is java 17.
Failure happens since gradle compiles java using java 17, but vaadin-gradle-plugin uses java 11 to process classes.
Expected behavior
vaadin-gradle-plugin must respect gradle java toolchain configured in project and use appropriate tools for underlying steps of the build.
Minimal reproducible example
Add toolchain configuration DSL into build.gradle of UI project utilizing vaadin-gradle-plugin e.g.
CLI actions:
Versions
The text was updated successfully, but these errors were encountered: