Download Wicket releases
Apache Wicket 1.5.6 is the current stable release.
Download
New projects should use Wicket 1.5.6 as their base.
- Latest stable release: 1.5.6
- Last 1.4.x release: 1.4.20
- Archived releases: http://archive.apache.org/dist/wicket
We recommend you start with our latest 1.5 release. If you are migrating an existing application from Wicket 1.4 to 1.5, you may find the migration guide invaluable.
Apache Wicket 1.5.x require JDK 1.5 or newer
You cannot use Wicket without adding an SLF4J logging implementation to your classpath. Most people use log4j. If you do, just include slf4j-log4j12.jar on your classpath to 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
Add the following snippet to your Maven project descriptor (pom.xml):
<dependency>
<groupId>org.apache.wicket</groupId>
<artifactId>wicket-core</artifactId>
<version>1.5.6</version>
</dependency>
For the SLF4J log4j binding:
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.6.4</version>
</dependency>
SNAPSHOTs and latest bleeding-edge code
If you wish to build the latest code from scratch, master and branches live in Git repository: https://git-wip-us.apache.org/repos/asf/wicket.git
Branches:
- 6.0.x: master
- 1.5.x: wicket-1.5.x
- 1.4.x: wicket-1.4.x
- 1.3.x: wicket-1.3.x
- 1.2.x: wicket-1.2.x
There’s also a Maven 2 repository providing SNAPSHOTs available here:
<repositories>
<repository>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
<id>apache.snapshots</id>
<name>Apache Snapshot Repository</name>
<url>https://repository.apache.org/content/groups/snapshots</url>
<layout>default</layout>
</repository>
</repositories>