Install Guide

There are several ways you can take to install this project's artifact into your local Maven repository. Anyone of them will do.

After installation, head over to the Quickstart Guide for instructions on how to use it.

Install Using the Packaged Binaries

Download a binary package:

$ curl -o tim-wicket-1.2.0-bin.zip \
  http://forge.terracotta.org/releases/projects/tim-wicket/downloads/tim-wicket-1.2.0-bin.zip

Unpack:

$ unzip tim-wicket-1.2.0-bin.zip

Install:

$ cd tim-wicket-1.2.0
$ mvn install:install-file \
  -DgroupId=org.terracotta.modules \
  -DartifactId=tim-wicket \
  -Dversion=1.2.0 \
  -Dpackaging=jar \
  -Dfile=tim-wicket-1.2.0.jar

Install Using the Packaged Source

Download a source package:

$ curl -o tim-wicket-1.2.0-src.zip \
  http://forge.terracotta.org/releases/projects/tim-wicket/downloads/tim-wicket-1.2.0-src.zip

Unpack:

$ unzip tim-wicket-1.2.0-src.zip

Install:

$ cd tim-wicket-1.2.0
$ mvn clean install

Install Using the Source from Subversion

Checkout the project:

$ svn checkout \
  http://svn.terracotta.org/svn/forge/projects/tim-wicket/tags/release-1.2.0 \
  tim-wicket-1.2.0

Install:

$ cd tim-wicket-1.2.0
$ mvn clean install