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
Solved! Go to Solution.
Views
Replies
Total Likes
AEM 6.0 is still a backward compatible. so you can try with 2.8.0 jar
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/
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
AEM 6.0 is still a backward compatible. so you can try with 2.8.0 jar
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
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.
Views
Replies
Total Likes