Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Updated to rc1, fixed versions for slf4j

...

Wicket used to live at SourceForge. We recently joined the Apache Software Foundation and have graduated to a top-level project. We don't have any stable releases under Apache yet, but 1.3.0 will be released soon. In the meantime, Wicket 1.2.x is still hosted on SourceForge, and Wicket 1.3.0 beta releases release candidates are available on Apache.

Download 

Latest stable release

1.2.6

(from SourceForge; this release is neither affiliated with nor endorsed by Apache in any way)

Latest beta release candidate

1.3.0-beta-4rc1

(from the Apache Software Foundation)

For new projects, we recommend you start with our latest beta 1.3 release candidate. It's pretty stable - lots of people are using it on live production sites with no issues. We will release 1.3.0 final shortly, so if you're just starting out it's definitely the one to go for.

...

Code Block
xml
xml
<dependency>
    <groupId>wicket</groupId>
    <artifactId>wicket</artifactId>
    <version>1.2.6</version>
</dependency>

Or for 1.3.0-beta4rc1:

Code Block
xml
xml
<dependency>
    <groupId>org.apache.wicket</groupId>
    <artifactId>wicket</artifactId>
    <version>1.3.0-beta4<rc1</version>
</dependency>

For the SLF4J log4j binding (you don't need this for 1.2.x; see above):

Code Block
xml
xml
<dependency>
    <groupId>org.slf4j</groupId>
    <artifactId>slf4j-log4j12</artifactId>
    <version>1.4.0<3</version>
</dependency>

SNAPSHOTs and latest bleeding-edge code

...