The required jars to use Wicket

by kinabalu on July 29, 2009

In Java land, we’ve become very familiar with jarhell, and the associated pain of trying to find every jar required for let’s say Hibernate. The pain involved in this process is greatly reduced by the use of something like Maven, and while the initial learning curve sucks, you get into a groove with it. What about Wicket?

Here’s the dependencies you would need to fulfill, all two of them:

        <dependency>
            <groupId>org.apache.wicket</groupId>
            <artifactId>wicket</artifactId>
            <version>1.3.6</version>
        </dependency>
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-jcl</artifactId>
            <version>1.4.2</version>
        </dependency>

Similar Posts:

Share this:
  • del.icio.us
  • Facebook
  • Google Bookmarks
  • DZone
  • Slashdot
  • Technorati

Leave a Comment

Previous post:

Next post: