Tagged Questions
3
votes
4answers
654 views
Java, Maven: SLF4J error during build
I'm working on a Java project and building it with Maven (m2e). When I do a mvn clean install I get this error first thing:
SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
SLF4J: ...
1
vote
3answers
3k views
Resolve multiple SLF4J bindings in maven project
This is a question sounds like bunch of similar questions on SE sites, so I should be quite verbose to make my question clear. So, here is project's minimal pom.xml:
<dependencies>
...
0
votes
1answer
647 views
Unresolved Dependencies for a new play 2.0 scala project
Good day,
After "play new todo" (new scala project) -> "cd todo" -> "play dependencies" I get this one unresolved dependency "org.slf4j:slf4j-api:1.6.1 required by "net.sf.ehcache:ehcache-core:2.5.0, ...
0
votes
3answers
2k views
SLF4J: java.lang.IllegalStateException: org.slf4j.LoggerFactory could not be successfully initialized
I have the following maven dependency in my pom file:
<!-- depends on slf4j-api, log4j -->
<dependency>
<groupId>org.slf4j</groupId>
...
4
votes
2answers
3k views
Maven + SLF4J: Version conflict when using two different dependencies that require two different SLF4J versions
I have a project that use both dependencies independently: BoneCP and Hibernate. But thanks to SLF4J and its version conflicts it does not work because BoneCP requires SLF4J 1.5 and Hibernate requires ...
10
votes
2answers
15k views
SLF4J NoSuchMethodError on LocationAwareLogger
This is a question that has been asked before, but unfortunately no solution seems to work for me. I am facing this exception (with abridged stack trace):
java.lang.NoSuchMethodError: ...
3
votes
1answer
3k views
How to exclude commons logging dependency of spring with ivy?
I have a project build with ant using ivy for dependency management. I have no ivysetting file, but an ivy.xml with the following dependency (I want to use spring with slf4j instead of commons ...