Wicket-Bootstrap is based on the Bootstrap toolkit and the Apache Wicket Framework.
Branch | Build |
---|---|
wicket-10.x-bootstrap-5.x | |
wicket-9.x-bootstrap-5.x | |
wicket-9.x-bootstrap-4.x | |
wicket-8.x-bootstrap-4.x | |
Current release version: |
- Wicket 10.x and Bootstrap 5.x: 7.x
- Wicket 9.x and Bootstrap 5.x: 6.x
- Wicket 9.x and Bootstrap 4.x: 5.x
- Wicket 9.x and Bootstrap 3.4.0: 4.x
- Wicket 8.x and Bootstrap 4.x: 3.x
- Wicket 8.x and Bootstrap 3.4.0: 2.x
- Wicket 7.x and Bootstrap 3.3.7: 0.10.x
- Wicket 6.x and Bootstrap 3.3.7: 0.9.x
- Wicket 6.x and Bootstrap 2.*: 0.8.4
- Bootstrap (5.3.2): http://getbootstrap.com/
- Bootswatch (5.3.2): http://bootswatch.com/
- Material Design by FezVrasta (0.3.0): https://github.com/FezVrasta/bootstrap-material-design
- todc-bootstrap, google styled theme (3.3.7): https://todc.github.io/todc-bootstrap
- metro-bootstrap (3.3.7): https://github.com/idleberg/m8tro-bootstrap
- Vegibit (3.1.1): http://vegibit.com/vegithemes-twitter-bootstrap-themes/
- DatePicker: https://github.com/eternicode/bootstrap-datepicker
- Html5 Video Player: http://html5-ninja.com/item/Bootstrap-video-player-jQuery-plugin
- Open-On-Hover for dropdown buttons: https://github.com/CWSpear/twitter-bootstrap-hover-dropdown
- JQueryUI (1.11.4): http://api.jqueryui.com/
- Draggable: http://api.jqueryui.com/draggable
- Resizable: http://api.jqueryui.com/resizable
- jsass: (5.7.3) https://github.com/bit3/jsass
- bootstrap-tour (0.10.3): http://sorich87.github.com/bootstrap-tour
- OpenWebIcons (2014-09-29): https://pfefferle.dev/openwebicons/
- Twitter Typeahead (0.9.3): http://twitter.github.io/typeahead.js/
- Twitter Typeahead (0.10.x): http://twitter.github.io/typeahead.js/
- FontAwesome in version 6 (default) or 5
You can use FontAwesome 5 or 6 with version 6 as the default. To override the default and use FontAwesome 5, override the version of the dependency in your pom.xml:
<dependency>
<groupId>org.webjars</groupId>
<artifactId>font-awesome</artifactId>
<version>5.15.4</version>
</dependency>
For components in bootstrap-extensions
that use FontAwesome icons to follow that choice,
set the Bootstrap version as follows:
// best place to do this is in Application#init()
FontAwesomeSettings.get(Application.get()).setCssResourceReference(FontAwesome5CssReference.instance());
wicket-bootstrap is available in Maven central repository.
core maven dependency:
<dependency>
<groupId>de.agilecoders.wicket</groupId>
<artifactId>wicket-bootstrap-core</artifactId>
<version>6.y.z</version>
</dependency>
for all extensions:
<dependency>
<groupId>de.agilecoders.wicket</groupId>
<artifactId>wicket-bootstrap-extensions</artifactId>
<version>6.y.z</version>
</dependency>
for all themes:
<dependency>
<groupId>de.agilecoders.wicket</groupId>
<artifactId>wicket-bootstrap-themes</artifactId>
<version>6.y.z</version>
</dependency>
if you want to use a less compiler:
<dependency>
<groupId>de.agilecoders.wicket</groupId>
<artifactId>wicket-bootstrap-less</artifactId>
<version>6.y.z</version>
</dependency>
all samples can be used with this dependency:
<dependency>
<groupId>de.agilecoders.wicket</groupId>
<artifactId>wicket-bootstrap-samples</artifactId>
<version>6.y.z</version>
</dependency>
Install bootstrap settings class:
// best place to do this is in Application#init()
Bootstrap.install(this);
// if you want to customize bootstrap:
BootstrapSettings settings = new BootstrapSettings();
settings.setXXX(...);
Bootstrap.install(this, settings);
then you are able to use all wicket-bootstrap components.
Have a bug? Please create an issue here on GitHub!
https://github.com/l0rdn1kk0n/wicket-bootstrap/issues
Wicket-Bootstrap will be maintained under the Semantic Versioning guidelines as much as possible.
Releases will be numbered with the follow format:
<major>.<minor>.<patch>
And constructed with the following guidelines:
- Breaking backward compatibility bumps the major
- New additions without breaking backward compatibility bumps the minor
- Bug fixes and misc changes bump the patch
For more information on SemVer, please visit http://semver.org/.
Copyright 2012 AgileCoders.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this work except in compliance with the License. You may obtain a copy of the License in the LICENSE file, or at:
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.