Download Apache Wicket

Get the most recent version of Wicket in one source package

Wicket is released as a source archive, convenience binaries and through the Maven Central Repository. The most convenient way of getting Wicket is through the Maven dependency management system.

Supported Versions

The following releases are supported by the Wicket team.

Version Latest release Status
Wicket 10.x 10.0.0 current, supported
Wicket 9.x 9.16.0 supported
Wicket 8.x 8.15.0 security fixes only, upgrade to 9.x or 10.x

However, if your application is not on the current branch, you should consider upgrading at your earliest convenience.


Unsupported Releases

The following releases are no longer supported by the Wicket team. You should upgrade your project if it still depends on any of these versions.

Version Latest release Status
Wicket 7.x 7.18.0 discontinued, upgrade to 9.x or 10.x
Wicket 6.x 6.30.0 discontinued, upgrade to 9.x or 10.x
Wicket 1.5.x 1.5.16 discontinued, upgrade to 9.x or 10.x
Wicket 1.4.x 1.4.23 discontinued, upgrade to 9.x or 10.x
Wicket 1.3.x 1.3.7 discontinued, upgrade to 9.x or 10.x
Wicket 1.2.x 1.2.5 discontinued, upgrade to 9.x or 10.x
Wicket 1.1.x 1.1.0 discontinued, upgrade to 9.x or 10.x
Wicket 1.0.x 1.0.0 discontinued, upgrade to 9.x or 10.x

Release Archives

The Apache mirroring system only hosts the latest version of each actively supported branch. When you need to download an older release you can find them in the archives.

Go to the Apache archives to find your specific version.


SNAPSHOT Repository

In order to use any SNAPSHOT versions mentioned in each download section of a specific Wicket version you have to configure the SNAPSHOT repository in your pom.xml.

<repository>
    <id>apache.snapshots</id>
    <name>Apache Development Snapshot Repository</name>
    <url>https://repository.apache.org/content/repositories/snapshots/</url>
    <releases>
        <enabled>false</enabled>
    </releases>
    <snapshots>
        <enabled>true</enabled>
    </snapshots>
</repository>

Beware that SNAPSHOT versions might be deleted after a while and that you should not use any of them to go live with.