You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@jackrabbit.apache.org by Ben Short <be...@benshort.co.uk> on 2009/09/09 12:36:18 UTC

Documentation Error

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

Re: Documentation Error

Posted by Jukka Zitting <ju...@gmail.com>.
Hi,

On Wed, Sep 9, 2009 at 12:36 PM, Ben Short<be...@benshort.co.uk> wrote:
> On this page
>
> http://jackrabbit.apache.org/first-hops.html
>
> The maven dependencies are incorrect.

Thanks for the report! I updated the page, and the changes should be
visible in a few hours.

BR,

Jukka Zitting