Wicket Stuff Core
July 30, 2026 ยท View on GitHub
Overview:
Wicket Stuff is a collection of open source projects for the Apache Wicket web framework created and maintained by the Wicket community.
The core release is essentially a container into which developers place their project that ensures that regular releases are made that pair the projects to a specific wicket version.
The project acceptance criteria is very broad. So long as it is wicket related you are welcome to add in your module.
Our release process allows end users an easy way to track a project relative to the wicket release cycle.
For example, if a user sees a org.wicketstuff:someproject artifact with a version of 1.4.16.1 they can know immediately that it is based on wicket 1.4.16 and that it is the first point release (the 1.4.16 version would have been the original release).
Bill of Materials (BOM):
WicketStuff publishes a BOM that manages the versions of all released WicketStuff artifacts. Import it
into the dependencyManagement section of your project and you can then declare WicketStuff
dependencies without specifying a version for each of them:
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.wicketstuff</groupId>
<artifactId>wicketstuff-bom</artifactId>
<version>10.10.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.wicketstuff</groupId>
<artifactId>wicketstuff-select2</artifactId>
</dependency>
</dependencies>
Project Documentation (Wiki):
https://github.com/wicketstuff/core/wiki
Project Documentation (JavaDoc):
JavaDocs are hosted at http://www.javadoc.io. Just append to 'http://www.javadoc.io/doc' the group id and the artifact id of a module to get its javadoc. For example:
-http://www.javadoc.io/doc/org.wicketstuff/wicketstuff-stateless
-http://www.javadoc.io/doc/org.wicketstuff/wicketstuff-restannotations