Our Blog

Let us find tech solutions together

Jul 29

The required jars to use Wicket

By kinabalu | Comments

 

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:

1
2
3
4
5
6
7
8
9
10
        <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>