Wednesday, September 18, 2013

maven/eclipse message: No marketplace entries found to handle maven-compiler-plugin:2.3.1:compile in Eclipse


If eclipse throws a message like this:

No marketplace entries found to handle maven-compiler-plugin:2.3.1:compile in Eclipse

Check your maven configuration.
Go to menu, windows, preferences, type "maven" in the filter box, select "User Setttings".
Set your local repository references.

For example:





No comments:

Post a Comment

eclipse: java: SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder" or Exception in thread "main" java.lang.NoClassDefFoundError: org/slf4j/impl/StaticLoggerBinder

  >PROBLEM Using Eclipse, you try to run a simple logging test using "org.slf4j.Logger" like the sample below: package Test; im...