-
Notifications
You must be signed in to change notification settings - Fork 35
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
[#282] fork parameter #283
base: master
Are you sure you want to change the base?
Conversation
This requires groovyc to be installed, e.g. via https://github.com/sdkman/sdkman-action |
bfb376f
to
baaff2a
Compare
baaff2a
to
c612b1e
Compare
Missing options requested: https://issues.apache.org/jira/browse/GROOVY-11194 |
I think for most folks, having Groovy installed on the system would be an unusual setup, so supporting using Groovy from a dependency is critical. |
But that's exactly the point of the fork option. Start a new process to use an external groovyc compiler. If you want to have it downloaded via the build, there's a toolchains-maven-plugin for that. How else would you execute the groovy compiler with a different java version, if not with groovyc as requested in the toolchain issue? |
This is missing joint compilation options. I think we'd add that then remove the stub generation mojos? |
I'm thinking maybe we should merge this to a feature branch. There's gonna be multiple steps before this is functional for users. |
I disagree. This is a working feature by its own. It does not have the same options as the "default" way to compile things YET, but we can ship this with updated documentation (»fork mode does not allow some options at the moment«), but ship them later instead. If we wait for the feature to be "done", no one can profit from it for another year or so. Thus said, I'd claim it is a documentation issue. :) |
I wasn't suggesting we need full feature parity, just that joint compilation might be something to figure out first. |
If I see correctly, joint compilation is a new feature? That would be easy to implement, just
|
It's not a new feature. It's basically the stub mojos. I've been trying to think if we need to enable this option if the stub mojos are in the execution plan or maybe add a new parameter that only applies if using fork... |
@keeganwitt how do we continue here? Merge with not all options available, or wait for the options to appear? Or you can create a groovyc config file.... Just add to this PR. |
I'll have a go at adding the joint compilation stuff here, then we can merge. |
Sorry for the slow progress on this. It looks like we may need yet another fix upstream to be able to set the stub dir. |
I am beginning to think if we should just write a groovyc config file instead... |
Config scripts are unrelated to stub generation. |
Fixes #282
This PR allows building with an external
groovyc
compiler. Currently, the only option is to use thegroovyc
from either${GROOVY_HOME}/bin
or${PATH}
(in that order), just likefork
on maven-compiler-plugin works.However, not all options can be supported. For now, I'd say let's print a warning for each of those unsupported options until
groovyc
does support them (we would need to track it using tickets).Another 2nd step is to implement toolchain support as requested in #43. I consider this PR a prerequisite, prior to implementing toolchains as we would need to fork anyway when using
groovyc
. But using the library might be possible, too.