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.11.0 current, supported
Wicket 9.x 9.24.0 one final release, then end of life — upgrade to 10.x or 11.x
Wicket 8.x 8.19.0 one final release, then end of life — upgrade to 10.x or 11.x

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


Release Policy

With the release of Wicket 11.0.0, in the first week of October 2026, Wicket moves to a time-based release schedule: a new major release every three months, and every fourth major release — once a year — is a long term support (LTS) release. The table above describes the situation today; the schedule below takes effect when 11.0.0 is released.

Two release lines are maintained at any time:

  • the current LTS release, which receives security fixes and applicable bug fixes until the next LTS release;
  • the current quarterly release, which receives fixes until the next quarterly release supersedes it. Fixes normally ride along with that next release; a serious issue may warrant a patch release, for example 13.0.1.

The support window applies to the release line, not to individual features. Features are developed on main and carry over into every following release, so a feature introduced in Wicket 11 is also present in 12, 13 and in the next LTS, Wicket 14.

Wicket 10 is the current LTS and stays supported until Wicket 14 is released in the first week of July 2027. Wicket 8.x and 9.x each receive one final release and are then end of life, and with them Wicket’s support for the javax.servlet API.

Version Expected Line
Wicket 11.0.0 first week of October 2026 quarterly
Wicket 12.0.0 January 2027 quarterly
Wicket 13.0.0 April 2027 quarterly
Wicket 14.0.0 first week of July 2027 LTS, supported until Wicket 18

The full announcement is in our news archive: A new release cadence for Apache Wicket.


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.