I have a maven project in eclipse and have maven goals that run annotation processors to generate code. The output folder for this code is target/generated-sources/apt.

In order for eclipse to see this generated code I need to add target/generated-sources/apt as a source folder to the eclipse project.

However, this causes there to be an error of type "Maven Configuration Problem" saying

Project configuration is not up-to-date with pom.xml. Run project configuration update

I think I understand why this is the case as eclipse has a different set of source folders to maven's set. But I need this different set, as I need eclipse to be able to see the generated source folders...

When doing a pure maven built, these source folders will be included in the build, by maven.

btw, I have upgraded to the official eclipse release of the maven eclipse plugin, m2e 1.0 - what used to be m2eclipse. I'd like to see if I can find a work around/solution to this with the m2e plugin before I have to go back to the old m2eclipse version.

link|improve this question

feedback

5 Answers

up vote 11 down vote accepted

You need to attach the source directory with the build-helper-plugin.

Like so:

 <plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>build-helper-maven-plugin</artifactId>
    <executions>
        <execution>
            <id>add-source</id>
            <phase>generate-sources</phase>
            <goals>
                <goal>add-source</goal>
            </goals>
            <configuration>
                <sources>
                    <source>${project.build.directory}/generated-sources/java/</source>
                </sources>
            </configuration>
        </execution>
    </executions>
 </plugin>

You will also need to:

link|improve this answer
1  
this solution works great when the m2e connector for build-helper-maven-plugin is installed in Eclipse – Brad Cupit Jan 11 at 19:13
glad to have discovered it – Michael Wiles Jan 17 at 16:01
Doesn't work for me. Can you elaborate on the build-helper-plugin setup? – Kevin Wong Feb 27 at 19:42
Kevin, what did you do to make it work? Share pom snippet. – Michael-O Feb 27 at 19:45
<plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <executions> <execution> <id>add-source</id> <phase>generate-sources</phase> <goals> <goal>add-source</goal> </goals> <configuration> <sources> <source>${project.build.directory}/generated-sources/java/</source> <source>${project.build.directory}/jaxws/wsimport/java</source> </sources> </configuration> </execution> </executions> </plugin> – Kevin Wong Feb 28 at 16:35
show 3 more comments
feedback

Right-click the Error message

*Project configuration is not up-to-date with pom.xml Run project configuration update

in the Problems View and select Quick Fix and click Finish to select the default Update project configuration. This fixes it.

link|improve this answer
1  
This solved the problem for me, thanks! – ChrLipp Jan 8 at 19:55
Unrelated to the original question, but solved it for me nicely, thanks! – rawpower Feb 8 at 23:20
This works for me too. Why isn't this the accepted answer? Seems the accepted answer does too much. – Niels Basjes Mar 27 at 21:06
That fixes it.Thanks bro.upvoted – rogerstone Apr 7 at 10:21
feedback

In m2e 1.0 the handling of Maven plugins has changed. You might be lacking a specific m2e extension for your code generating plugin. Here is all the documentation I managed to find.

This bug report may also be relevant.

link|improve this answer
i guess m2e is new and has lots of outstanding development – Michael Wiles Aug 26 '11 at 9:04
I believe the problem is that just applying Maven plugins to m2eclipse projects, as m2eclipse used to do, just happened to work most of the time, but wasn't guaranteed to always do the right thing. The new approach is potentially more solid, but requires that many Maven plugins have an m2e counterpart. – Nicola Musatti Aug 26 '11 at 9:15
feedback

After switching to new versions of m2e/maven/apt,... i had builderrors because of the duplicated files, caused by the added buildpath by the buildhelper, so i needed to remove the "apt-generated"-Folders from the buildhelper.

To fix the Problem in Eclipse, not adding the "apt-generated"-folder via Update Maven Configuration in M2E, i've written a M2E Plugin to fix this problem. It adds the outputDirectories configured in the maven-apt-plugin to the buildpath of the Project.

https://apt-m2e.googlecode.com

link|improve this answer
feedback

You can also use the buildhelper m2e connector available in the discovery catalog. I'm using Eclipse 3.7

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.