I'm working with maven projects in Eclipse (Indigo).

In order to compile some classes that need endorsed libraries (webservices-api.jar) I go to "Properties/Java Build Path/Order and Export" and move "Maven Dependecies" before "JRE System Library".

The problem is that whenever I click on the "Maven/Update Project configuration" option the entries are rearranged and "JRE System Library" is always the first entry, and the code no longer compiles.

Is there a way to have M2E remember my choice and stop rearranging the libraries?

Thanks in advance

link|improve this question

feedback

3 Answers

I understand the webservices-api.jar overrides some classes in standard JRE, right?

The only way out I see is moving the jar to JRE\lib\ext and mark this dependency in Maven as system. It's not a good solution, as Maven will stop packing this artifact into your target and it will be your responsibility to handle it. This has a chance to work — but please note I haven't tried it, so I'm not sure if you manage to override your JRE libs correctly.

As for m2e, it takes over control over your Eclipse project settings, so manual tweaking is good as long as you don't update configuration.

link|improve this answer
I don't want developers to have to modify their environments. A fresh copy checked out from version control should just work. – adrianboimvaser Oct 20 '11 at 1:48
feedback
up vote 0 down vote accepted

The solution I ended up implementing is having an ant target do a replacement in the .classpath file to swap the classpath containers. I add an ant builder to my project that calls that target and then refresh the project before the java compiler. A little complex, but it works like a charm.

link|improve this answer
The next version of M2E (1.1) preserves custom classpath entries. – adrianboimvaser Nov 18 '11 at 21:37
feedback

Put .classpath file under SCM. Next time m2e overrides it, just fall back to the SCM version.

From my experience, this file almost never needs to change.

link|improve this answer
What you suggest is making IDE and build system behave differently, leading to potential problems either with Eclipse compilation or in deployment. Either trust m2e or throw it away, fighting it with manual tricks is not good advice. – MaDa Oct 19 '11 at 9:28
@MaDa. IDE IS behaving differently from the maven build system. You should always maintain command-line build system and use the output of these builds to deploy to production. m2e is a work in progress, it's good for most of the time, but it still has quirks, some of which require manual ( albeit rare ) intervention. – Alexander Pogrebnyak Oct 19 '11 at 16:08
.classpath is already under SCM – adrianboimvaser Oct 20 '11 at 1:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.