To get E2M 1.0 working correctly I have had to specify the lifecycle mapping.

    <pluginManagement>
        <plugins>
            <plugin>
                <groupId>org.eclipse.m2e</groupId>
                <artifactId>lifecycle-mapping</artifactId>
                <version>1.0.0</version>
                <configuration>
                    <lifecycleMappingMetadata>
                        <pluginExecutions>
                            <pluginExecution>
                                <pluginExecutionFilter>
                                    <groupId>org.bsc.maven</groupId>
                                    <artifactId>maven-processor-plugin</artifactId>
                                    <versionRange>[2.0.2,)</versionRange>
                                    <goals>
                                        <goal>process</goal>
                                    </goals>
                                </pluginExecutionFilter>
                                <action>
                                    <execute />
                                </action>
                            </pluginExecution>
                        </pluginExecutions>                         
                    </lifecycleMappingMetadata>
                </configuration>
            </plugin>
        </plugins>
    </pluginManagement>

But then I get this warning:

 [WARNING] The POM for org.eclipse.m2e:lifecycle-mapping:jar:1.0.0 is missing, no dependency information available
 [WARNING] Failed to retrieve plugin descriptor for org.eclipse.m2e:lifecycle-mapping:1.0.0: Plugin org.eclipse.m2e:lifecycle-mapping:1.0.0 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.eclipse.m2e:lifecycle-mapping:jar:1.0.0

if I run some specific maven task for example mvn clean install findbugs:findbugs (If I run only mvn clean install then there is no such message)

I know that the problem is that this POM does not exists, because it is only defined to hold the mapping information. (http://stackoverflow.com/questions/7409823/m2e-lifecycle-mapping-not-found)

Anyway, I want to keep my build clean, without any warnings, so how can I get rid of this specific one? (My CI server checks that there is no warning.)

I use Maven 3.0.2 and tryed Maven 3.0.3 too, but the same result.

link|improve this question

Which Maven version are you running? – khmarbaise Oct 26 '11 at 16:25
@khmarbaise: It is maven 3.0.2 – Ralph Oct 26 '11 at 16:52
Can you post the complete POM of this project...cause i assume that you have a dependency somewhere in your pom...BTW: Have you tried to run this with Maven 3.0.3 ? – khmarbaise Oct 26 '11 at 17:04
@khmarbaise: do you mean an other dependency than the one I have already posted? – Ralph Oct 26 '11 at 17:30
@khmarbaise: it is the same behaviour for Maven 3.0.3 – Ralph Oct 26 '11 at 17:34
show 6 more comments
feedback

1 Answer

up vote 1 down vote accepted

While not the most clean solution, when you use a repository manager in your company or are on your own, in the mean time you may do this:

Regards Mirko

link|improve this answer
its a hack, but it is the best solution that I can think of at the moment – Ralph Jan 5 at 11:04
@Ralph I edited the answer and tested it with some projects. – Mirko Friedenhagen Jan 8 at 19:16
now it works -- Thanks very mutch for your work. – Ralph Jan 9 at 8:56
feedback

Your Answer

 
or
required, but never shown

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