Add the following dependency to your program:
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.4.0</version>
</dependency>
On 06/07/07, Jonathan Robie <[EMAIL PROTECTED]> wrote:
Rupert Smith wrote:
> I may not have answered your question exactly. I've described how its
> supposed to work.
>
> Is the client-distribution failing to build, or are you just unable to
> use
> it out-of-the-box because of a lack of slf4j provider?
The latter - when I try to run a program, it dies:
SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for
further details.
Exception in thread "main" java.lang.NoClassDefFoundError:
org/slf4j/impl/StaticLoggerBinder
at org.slf4j.LoggerFactory.<clinit>(LoggerFactory.java:60)
at org.apache.qpid.client.AMQConnection.<clinit>(AMQConnection.java:88)
at CreateQueue.main(CreateQueue.java:36)
Jonathan