Jitr releases are currently not yet being deployed to the Maven central repository wth a nightly rsync process, although this is an open issue .
You can use the following repository and dependency definitions for the current version of Jitr.
<repository>
<id>jitr.org</id>
<url>http://www.jitr.org/repositories/release</url>
</repository>
<dependency>
<groupId>org.jitr</groupId>
<artifactId>jitr</artifactId>
<version>1.0.0</version>
</dependency>
Jitr assumes that you are already using JUnit and thus does not include this as a transitive dependency. There are several options for containers that can be run from Jitr, so each container dependency has been marked as optional . The following is a list of possible container dependencies that you may need to include.
<dependency>
<groupId>org.apache.tomcat</groupId>
<artifactId>catalina</artifactId>
<version>6.0.18</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.apache.tomcat</groupId>
<artifactId>coyote</artifactId>
<version>6.0.18</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty</artifactId>
<version>6.1.15</version>
<optional>true</optional>
</dependency>
Please visit Jitr's SourceForge download page to download Jitr manually. Any required dependencies can be viewed from the Dependencies page.