com.adobe.cq.sightly, version=[2.2, 3) -- Cannot be resolved
If you are migrating to AEM 6.3 then you may face the below issue -
Solution -
1. Either Install Uberjar from felix console. It can be find it location - https://repo.adobe.com/nexus/content/groups/public/com/adobe/aem/uber-jar/6.3.1/
2. Or put following maven dependencies in your POM file -
<dependency>
<groupId>com.adobe.aem</groupId>
<artifactId>uber-jar</artifactId>
<version>6.3.0</version>
<scope>provided</scope>
</dependency>
Comments
Post a Comment