I have a web project in eclipse using m2e. I had an error about a missing artifact in pom.xml and I clicked Permanently mark goal ... in pom.xml as ignored. What happened was it no longer copies the jar files from my repository. How do I undo this action. Don't know what configuration file or settings file was changed when I did that
Asked
Active
Viewed 3,422 times
0
-
It added an m2e item to your POM that you can see easily, and it only changes behavior in eclipse, not anywhere else. – bmargulies Jul 06 '12 at 01:38
-
It also affected other projects so I assumed the change was not in the POM of the project – cedric Jul 06 '12 at 01:43
1 Answers
1
I am assuming you are using m2e v1.1. In this version, you can choose which pom in the hierarchy gets marked as having its lifecycle mapping ignored. If it's not in the pom of the current project, it will be a pom in one of the parent projects. Here is a good explanation of what is happening:
https://www.eclipse.org/m2e/documentation/m2e-execution-not-covered.html
So you can do a file search for the term pluginManagement
in all your pom.xml files in your workspace and you will find what you are looking for.

runderworld
- 131
- 1
- 4
- 10

Andrew Eisenberg
- 28,387
- 9
- 92
- 148