Hi,
On this page
http://jackrabbit.apache.org/first-hops.html
The maven dependencies are incorrect. The following configuration works
correctly.
<!-- The JCR API is what you'll be writing your code against -->
<dependency>
<groupId>javax.jcr</groupId>
<artifactId>jcr</artifactId>
<version>1.0</version>
</dependency>
<!-- This is the core Jackrabbit content repository implementation
-->
<dependency>
<groupId>org.apache.jackrabbit</groupId>
<artifactId>jackrabbit-core</artifactId>
<version>1.6.0</version>
</dependency>
<!-- You can select the logging tool you want, let's use Log4J here
-->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.5.3</version>
</dependency>
Regards
Ben Short