This repository has been archived by the owner on Feb 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Error on pom.xml #52
Comments
I meet the same problem |
So am i, I soved it by useing eclipse quick fixes Mark goal test-compile as ignored in eclipse build eclipse |
See this answer: http://stackoverflow.com/a/43508339/321307 |
厉害了 |
org.eclipse.m2e lifecycle-mapping 1.0.0 org.codehaus.mojo aspectj-maven-plugin [1.0,) compile test-compile |
Resolved via a30e404. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Using Eclipe plugin Maven Integration for Eclipse 1.5.0:
On line 271:
<executions>
<execution>
<goals>
<goal>compile</goal>
<goal>test-compile</goal>
</goals>
</execution>
</executions>
Error:
Plugin execution not covered by lifecycle configuration: org.codehaus.mojo:aspectj-maven-plugin:1.2:compile (execution: default, phase: process-sources)
I have solved it adding an
<id>
and<phase>
tags to the<execution>
block.The text was updated successfully, but these errors were encountered: