Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The core framework will switch to JDK5 for the next major version (1.4.x or 2.x, we haven't decided the numbering scheme quite yet).

...

Important note about logging dependencies for 1.3.0 and later.

As of Wicket 1.3.0, Wicket uses the SLF4J project for logging. SLF4J is similar to commons-logging, in that it allows libraries/frameworks like Wicket to avoid forcing a choice of logging framework on their users. To make this work in your application, you need to pick a static binding to use. Without one, Wicket will fail to start properly. Most people will want to use log4j. If you do, just include slf4j-log4j12.jar on your classpath .SLF4J is similar to commons-logging, in that it allows libraries/frameworks like Wicket to avoid forcing a choice of logging framework on their users. For more information, see the SLF4J FAQto get Wicket to use log4j too. If you want to use commons-logging or JDK14 logging or something else, please see the SLF4J site for more information.

Maven 2

For 1.2.6, add the following snippet to your Maven project descriptor (pom.xml):

...