slf4j is a logging facade with different implementations (though most people use it plugged into log4j).
The library slf4j-jcl (if you look 80% down the page here: http://www.slf4j.org/manual.html) is a way to delegate slf4j calls to jakarta commons logging. You probably don't want to do that. If you're running a typical configuration, you'll need: slf4j-api-(version).jar slf4j-log4j12-(version).jar log4j-(version).jar The slf4j version that I use is 1.4.3 The log4j version that I use is 1.2.13 I don't know the maven artifact ID, as I don't use Maven... but that should at least help explain what's going on. luigiDC wrote: > > > <?xml version="1.0" encoding="UTF-8"?> > <project> > <dependency> > <groupId>org.slf4j</groupId> > <artifactId>slf4j-jcl</artifactId> > <version>1.5.0</version> > </dependency> > </project> > -- View this message in context: http://www.nabble.com/Problems-dependency-slf4j-wicket-1.3.1-tp16148294p16150673.html Sent from the Wicket - User mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
