Expand my Community achievements bar.

Nomination window for the Adobe Community Advisor Program, Class of 2025, is now open!
SOLVED

Standalone Jar for AEM 6.0

Avatar

Level 3

Hi,

I need to download stanalone.jar for AEM 6.0, previously I used to get it from http://www.apache.org/dyn/closer.cgi/jackrabbit/2.8.0/jackrabbit-standalone-2.8.0.jar

But, this jar is for AEM5.6.1. Can you please let me know, from where I can get this jar for AEM 6.0?

 

Regards,

Kaustav Majoomder

1 Accepted Solution

Avatar

Correct answer by
Level 10

AEM 6.0 is still a backward compatible. so you can try with 2.8.0 jar

View solution in original post

5 Replies

Avatar

Level 10

From AEM 6.0, its moved to Jackrabbit Oak and I think you should be able to find something here http://jackrabbit.apache.org/oak/

Avatar

Level 3

I have already checked in the site, you have mentioned. But, can't able to find anything fruitful. So, my question is, whether I can use this "jackrabbit-standalone-2.8.0.jar" jar for AEM 6.0, or do I need some other jars for that. If needed, then from where I can get that.

 

Regards,

Kaustav Majoomder

Avatar

Correct answer by
Level 10

AEM 6.0 is still a backward compatible. so you can try with 2.8.0 jar

Avatar

Level 3

Ok.. I will try with the jar. If any issue arise, I will definitely let the forum people know obiut it. Anyways thanks a lot for the help!!

Regards,

Kaustav

Avatar

Level 7

 

For AEM 6.0, Jackrabbit Oak is used instead of the standalone Jackrabbit JAR. Oak is bundled with AEM, so you don't need to download it separately. If you need Oak for other purposes, you can download it from the Apache Jackrabbit Oak downloads. Alternatively, you can add it as a Maven dependency like this:

 

<dependency>
    <groupId>org.apache.jackrabbit</groupId>
    <artifactId>oak-core</artifactId>
    <version>1.6.0</version>
</dependency>

 

For most AEM tasks, the standalone JAR is not required.