Re: Wicket-RAD 0.6 with Wicket 1.4-SNAPSHOT
P.S. I got a NoSuchMethodError exception when launching Wicket with Jetty from Eclipse: "Task ModificationWatcher terminated",
java.lang.NoSuchMethodError:
org.slf4j.Logger.isTraceEnabled()Z
at org.apache.wicket.util.thread.Task$1.run(Task.java:103)
at java.lang.Thread.run(Thread.java:595)
I fixed this by changing the the version of slf4j-* to 1.4.2 in wicket-rad-core/pom.xml (as in the other subprojects of wicket-rad):
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.4.2</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.4.2</version>
</dependency>
Kaspar