-
Notifications
You must be signed in to change notification settings - Fork 162
Setup
Just add the following dependency to your pom.xml
:
<dependency>
<groupId>de.agilecoders.wicket</groupId>
<artifactId>wicket-bootstrap-core</artifactId>
<version>${wicket-bootstrap.version}</version>
</dependency>
You can find all released versions here: Maven Central
To use always the latest stable version, you can use the versions-maven-plugin. Just add the plugin to your build section inside your pom.
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>2.2</version>
<inherited>true</inherited>
</plugin>
</plugins>
</build>
Now you are able to use the following (shortened) list of mvn goals:
-
versions:display-dependency-updates
scans a project's dependencies and produces a report of those dependencies which have newer versions available. -
versions:display-plugin-updates
scans a project's plugins and produces a report of those plugins which have newer versions available. -
versions:display-property-updates
scans a project and produces a report of those properties which are used to control artifact versions and which properties have newer versions available. - more
Download and add the latest wicket-bootstrap-core?.?.?.jar to your library path. You can use the github rss feed to stay up2date.
After adding wicket-bootstrap-core dependency to your project you are able to add BootstrapSettings to your application.
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.