Community
Participate
Working Groups
Build Identifier: 20110916-0149 If a Maven project is configured to use ecj compiler, the following errors appear when importing the project into eclipse: - No marketplace entries found to handle maven-compiler-plugin:2.3.2:compile in Eclipse. Please see Help for more information. - No marketplace entries found to handle maven-compiler-plugin:2.3.2:testCompile in Eclipse. Please see Help for more information. A fix should be trivial. http://git.eclipse.org/c/m2e/m2e-core.git/tree/org.eclipse.m2e.jdt/lifecycle-mapping-metadata.xml reads: <parameters> <compilerId>javac</compilerId> </parameters> It should read: <parameters> <compilerId>javac</compilerId> <compilerId>eclipse</compilerId> </parameters> Reproducible: Always Steps to Reproduce: 1. Unpack example zip provided 2. Try to import it to Eclipse: File->Import->Maven->Existing Maven Projects
Created attachment 209253 [details] A minimal HelloWorld project tha demonstrates the problem
compilerId=eclipse support can be implemented by an external m2e extension.
You can install m2e-jdt-compiler (https://github.com/jbosstools/m2e-jdt-compiler) to fix this problem. Related issue : #370983
After switching to win7 few days ago I got the problem even for the standard compiler. *No marketplace entries found to handle Execution default-compile, in /pom.xml in Eclipse. Please see Help for more information. *No marketplace entries found to handle Execution default-testCompile, in /pom.xml in Eclipse. Please see Help for more information. My environment: -Win 7 -eclipse 3.7.2 J2EE bundle -m2e 1.0.200 -I used Hello World project attached by Anttix but removed the compiler specific part from pom.xml
After some more resarch it seems that my problem was solved by updating maven installation to version 3.0.3/3.0.4.
*** This bug has been marked as a duplicate of bug 370983 ***
Moved to https://github.com/eclipse-m2e/m2e-core/issues/