Replies: 1 comment 2 replies
-
Switch off Java builder on the project and add a custom one that does whatever you want. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Currently with m2e we have the situation that inside the IDE we must disable the maven-compiler-plugin because JDT is performing the compile.
This has several pitfalls, because in Maven one can configure many things more flexible than in JDT (e.g. different executions with different settings for different source folders (see for example #265) but the main issue is that compilation works different in the IDE than if one executes it on the maven cli.
I therefore aim to something like that whenever JDT is detecting that a source file needs to be recompiled, it does not perform this directly but ask a extension / service / ... to do the actual work and gets some callback to inform JDT when the new class file is available.
Beta Was this translation helpful? Give feedback.
All reactions