You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 31 Next »

Getting Wicket

Wicket used to live at SourceForge. We recently joined the Apache Software Foundation and have graduated to a top-level project. We don't have any stable releases under Apache yet, but 1.3.0 will be released soon. In the meantime, Wicket 1.2.x is still hosted on SourceForge, and Wicket 1.3.0 beta releases are available on Apache.

Download 

Latest stable release

1.2.6

(from SourceForge; this release is neither affiliated with nor endorsed by Apache in any way)

Latest beta release

1.3.0-beta-2

(from the Apache Software Foundation)

For new projects, we recommend you start with our latest beta release. It's pretty stable - lots of people are using it on live production sites with no issues. We will release 1.3.0 final shortly, so if you're just starting out it's definitely the one to go for.

Both the 1.2.x and the 1.3.x lines require JDK 1.4, although there are some non-core modules which take advantage of JDK 5 features.

The core framework will switch to JDK5 for the next major version (1.4.x or 2.0.x, we haven't decided the numbering scheme quite yet).

Important note about logging dependencies for 1.3.0 and later.

As of Wicket 1.3.0, Wicket uses the SLF4J project for logging. SLF4J is similar to commons-logging, in that it allows libraries/frameworks like Wicket to avoid forcing a choice of logging framework on their users.

You cannot use Wicket without adding an SLF4J logging implementation to your classpath. Most people use log4j. If you do, just include slf4j-log4j12.jar on your classpath to get Wicket to use log4j too. If you want to use commons-logging or JDK14 logging or something else, please see the SLF4J site for more information.

Maven 2

For 1.2.6, add the following snippet to your Maven project descriptor (pom.xml):

<dependency>
    <groupId>wicket</groupId>
    <artifactId>wicket</artifactId>
    <version>1.2.6</version>
</dependency>

Or for 1.3.0-beta2:

<dependency>
    <groupId>org.apache.wicket</groupId>
    <artifactId>wicket</artifactId>
    <version>1.3.0-beta2</version>
</dependency>

For the SLF4J log4j binding (you don't need this for 1.2.x; see above):

<dependency>
    <groupId>org.slf4j</groupId>
    <artifactId>slf4j-log4j12</artifactId>
    <version>1.4.0</version>
</dependency>

SNAPSHOTs and latest bleeding-edge code

If you wish to build the latest code from scratch, the two branches live in the following places in Subversion:

There's also a Maven 2 repository providing SNAPSHOTs available here:

<repositories>
    <repository>
        <id>org.wicketstuff</id>
        <name>Wicket Stuff Repository</name>
        <url>http://wicketstuff.org/maven/repository</url>
    </repository>
</repositories>
  • No labels