Skip to content
Martin Grigorov edited this page Jun 20, 2016 · 9 revisions

As Maven dependency

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

Stay up2date

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

As a library

Download and add the latest wicket-bootstrap-core?.?.?.jar to your library path. You can use the github rss feed to stay up2date.

Next Step

After adding wicket-bootstrap-core dependency to your project you are able to add BootstrapSettings to your application.

Clone this wiki locally