add dependency slf4j-log4j12 to wicket-quickstart
-------------------------------------------------
Key: WICKET-856
URL: https://issues.apache.org/jira/browse/WICKET-856
Project: Wicket
Issue Type: Bug
Components: wicket-quickstart
Reporter: Martin Funk
Quickstart doesn't carry a dependency to any slf4j implementation. That's the
reason why
mvn jetty:run
doesn't work.
If the dependecy were present the quickstart project could be started right
away after svn checkout.
svn diff -r HEAD
Index: pom.xml
===================================================================
--- pom.xml (Revision 567028)
+++ pom.xml (Arbeitskopie)
@@ -54,6 +54,10 @@
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-management</artifactId>
</dependency>
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-log4j12</artifactId>
+ </dependency>
</dependencies>
<build>
<plugins>
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.