Supported Versions
The following releases are actively supported by the Wicket team.
| Version | Latest Release | Status | Java |
|---|---|---|---|
| Wicket 10.x | 10.8.0 | current | 17+ |
| Wicket 9.x | 9.22.0 | supported | 11+ |
| Wicket 8.x | 8.17.0 | security fixes only | 8+ |
If your application is on an older branch, consider upgrading at your earliest convenience.
Using Maven
Add the following dependency to your pom.xml to use Wicket 10.8.0:
<dependency>
<groupId>org.apache.wicket</groupId>
<artifactId>wicket-core</artifactId>
<version>10.8.0</version>
</dependency>
Using Gradle
implementation 'org.apache.wicket:wicket-core:10.8.0'
Manual Download
You can also download a binary or source distribution directly. Use the Apache mirror system to find the closest download location.
For older releases, visit the Apache release archives.
SNAPSHOT Repository
To use SNAPSHOT versions you must add the Apache snapshot repository to 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>
Note: SNAPSHOT versions are development builds and should never be used in production. They may be deleted at any time.