Under Helios/m2eclipse, when I generated jaxb sources they would be put on the Eclipse source path when I did an "Update Project Configuration".

This doesn't happen with Indigo/m2e (initial release of 22 June 2011). What do I need to do to fix this?

I'm using the standard maven-jaxb2-plugin, version 0.75.

link|improve this question

80% accept rate
1  
After seeing the votes on this, I should add what else I know. It isn't explicitly said here, but I suspect that an m2e extension is required for any plugin that generates sources. I've put in a Bugzilla request for maven-jaxb2-plugin. – Ed Staub Jun 25 '11 at 14:42
An extension has been written. I haven't tried it. See comment 12 on the Bugzilla request. If anyone else confirms it works, answer and I'll accept. – Ed Staub Jul 5 '11 at 19:44
feedback

2 Answers

up vote 7 down vote accepted

In Eclipse go to "Install New Software" add the software site: https://github.com/hwellmann/m2eclipse-extras/raw/master/p2/

Select the "m2e connector for JAXB"

Once you get that plugin installed the jaxb2 plugin should integrate correctly with the new version of m2e.

This info is from: https://bugs.eclipse.org/bugs/show_bug.cgi?id=350299

link|improve this answer
There's also another plugin available - see comment 16, same bugzilla report. – Ed Staub Jul 18 '11 at 12:28
What is the difference between the two? – Quantum Apr 25 at 7:14
feedback

While waiting for a fix for this problem, I'm using the following temporary workaround:

We have the jaxb-plugin and generated classes in a separate maven module. In eclipse I can then "disable Maven nature" on that module only. Then I can use Indigo with m2eclipse on the rest of our large maven project and it will depend on the jar for the jaxb module (must be built from the command line). This works well for me since our project was allready organized this way.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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