[
Date Prev][
Date Next][
Thread Prev][
Thread Next][
Date Index][
Thread Index]
[
List Home]
Re: [m2e-dev] How do I ensure my project configurator is called after JDT?
|
IJavaProjectConfigurator.configureRawClasspath is called at very end of
JavaProjectConfigurator.configure method implementation (see [1]), so
you do not need to do anything special.
Do note that IJavaProjectConfigurator.configureRawClasspath
implementations are expected to make all changes in provided
IClasspathDescriptor instance and should not modify IJavaProject
configuration directly.
[1]
http://git.eclipse.org/c/m2e/m2e-core.git/tree/org.eclipse.m2e.jdt/src/org/eclipse/m2e/jdt/internal/AbstractJavaProjectConfigurator.java
--
Regards,
Igor
On 11-04-03 11:09 AM, Ricardo Gladwell wrote:
Hi Guys
I'm in the process of getting my m2eclipse-android-integration plugin
working with mwe 0.13.0.
Was just wondering how I ensure my plugin project configurator is called
after the JDT project configurator?
My project configurator makes changes to the classpath in a call to
configureRawClasspath. This method is being called but it seems the JDT
defaults are over writing this? At the moment my configurator also
sub-classes the JavaProjectConfigurator, which might be having an
affect.
TIA...