Got this error on Eclipse Juno 4.2 when running a maven project.
SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
SLF4J: Defaulting to no-operation (NOP) logger implementation
SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
I am not using slf4j for logging. Actually i dont use any logging.
What am i doing wrong.?
The only dependency in my pom.xml
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.10</version>
<scope>test</scope>
</dependency>
</dependencies>
Edit:
mvn dependency:tree
[INFO] \- junit:junit:jar:4.10:test
[INFO] \- org.hamcrest:hamcrest-core:jar:1.1:test
Edit 2:
I created a New Maven Project-->maven-archetype-quickstart. After that i run clean install and eclipse console shows the above error. I did not even write any part of code yet. Even if i delete the sample src java file and sample test java file it produces the same error.
Edit 3:
I run the project outside of Eclipse and there was no error indication.