-
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
Support for compiler arguments #33
Comments
I would prefer to deal with internal java classes directly instead of providing open-ended arguments parameter. Takari lifecycle supports two compiler backend, |
@fragkakis what specific parameter would you like to control? I agree that we need to be able to accommodate common use cases for turning things on/off but I also agree with Igor that a free-for-all would probably not be good. One could create an implementation that checked a general set of parameters with specific controls in the implementations where you look for conflicts (like Igor's example above) but that's a lot of work. So maybe we can accommodate your request by dealing with your specific case and see if we can make it work. |
Hello both, I want to use the For my case, I need the class |
Currently the takari-lifecycle plugin does not provide a way to pass parameters to the compiler. The main use case I have come upon is when using internal Java classes (example StackOverflow question), but there can be arbitrary reasons why someone may need it.
The maven-compiler-plugin does have support for it (see here).
I propose adding a configuration parameter for this.
The text was updated successfully, but these errors were encountered: