Wicket-Bootstrap is based on the Bootstrap toolkit and the Apache Wicket Framework.
Current build status:
Current release version:
- Wicket 6.* and Bootstrap 3.*: 0.9.7
- Wicket 6.* and Bootstrap 2.*: 0.8.4
- Bootstrap (3.3.2): https://github.com/twbs/bootstrap/
- Apache Wicket (6.18.0): http://wicket.apache.org/
- Bootstrap (3.3.2): http://getbootstrap.com/
- Vegibit (3.1.1): http://vegibit.com/vegithemes-twitter-bootstrap-themes/
- Bootswatch (3.3.2): http://bootswatch.com/
- todc-bootstrap, google styled theme (3.3.2): http://todc.github.io/todc-bootstrap
- metro-bootstrap (3.3.2): https://github.com/TalksLab/metro-bootstrap
- 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.9.2): http://api.jqueryui.com/
- Draggable: http://api.jqueryui.com/draggable
- Resizable: http://api.jqueryui.com/resizable
- less4j (1.8.4): https://github.com/SomMeri/less4j
- bootstrap-tour (0.9.3): http://sorich87.github.com/bootstrap-tour
- OpenWebIcons (2014-09-29): http://pfefferle.github.com/openwebicons/
- Twitter Typeahead (0.9.3): http://twitter.github.io/typeahead.js/
- Twitter Typeahead (0.10.x): http://twitter.github.io/typeahead.js/
- Keep up to date on announcements and more by following me @l0rdn1kk0n on Twitter or use the #WicketBootstrap hashtag
- use the google group (wicket-bootstrap (at) googlegroups.com)
- you can see wicket-bootstrap in action: http://wb.agilecoders.de/
- how to use wicket-bootstrap? Read the documentation on https://github.com/l0rdn1kk0n/wicket-bootstrap/wiki.
- read more on my blog.
wicket-bootstrap is available in Maven central repository.
core maven dependency:
<dependency>
<groupId>de.agilecoders.wicket</groupId>
<artifactId>wicket-bootstrap-core</artifactId>
<version>0.9.7</version>
</dependency>
for all extensions:
<dependency>
<groupId>de.agilecoders.wicket</groupId>
<artifactId>wicket-bootstrap-extensions</artifactId>
<version>0.9.7</version>
</dependency>
for all themes:
<dependency>
<groupId>de.agilecoders.wicket</groupId>
<artifactId>wicket-bootstrap-themes</artifactId>
<version>0.9.7</version>
</dependency>
if you want to use a less compiler:
<dependency>
<groupId>de.agilecoders.wicket</groupId>
<artifactId>wicket-bootstrap-less</artifactId>
<version>0.9.7</version>
</dependency>
all samples can be used with this dependency:
<dependency>
<groupId>de.agilecoders.wicket</groupId>
<artifactId>wicket-bootstrap-samples</artifactId>
<version>0.9.7</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.