Having issues starting my bundle using AEM 6.0. Missing required package org.apache.jackrabbit.uuid
I migrated my code base from aem 5.6.1 to 6.0 instance still using 5.6 api. It worked fine.
I decided to start using 6.0 api so created new pom files using mvn. That worked fine too.
I placed my code in to the bundle and compiled successfully and uploaded and installed my package.
However my bundle would not start because i am missing a required package, org.apache.jackrabbit.uuid -- Cannot be resolved
I don't use this class directly. It must be used by some other jackrabbit class.
I have this dependency in my pom file
<dependency>
<groupId>org.apache.jackrabbit</groupId>
<artifactId>jackrabbit-jcr-commons</artifactId>
<version>2.8.0</version>
<scope>provided</scope>
</dependency>
I tried different versions with out any success. I tried adding jackrabbit-core version 1.0 and 1.1. Needles to say nothing worked.
Could some one tell me what version or what other dependency I can add to resolve my issue?
Thanks and regards,