-
Notifications
You must be signed in to change notification settings - Fork 4
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
bloop-maven: support per-execution configuration #29
Comments
Thanks for reporting! Do you have an example of such a project? I would greatly help out figuring out the issue. We can use it for the tests to quickly check if everything is working properly. |
I don't have an example project right now. I'll try and whip something up, but it'll probably be a couple of days. |
Thanks! |
Here's a tiny example. It has kind-projector plugin enabled using per-execution configuration, which Bloop import ignores. As a result, Maven can compile the project just fine, while Bloop fails, and Metals shows a compilation error. |
Here we take scalac options etc. from the
//plugin/configuration
element inpom.xml
. However, Maven has an option to override that configuration on a per-execution basis. This can be used, for example, to set different scalac options forcompile
andtestCompile
goals.The text was updated successfully, but these errors were encountered: