I am getting the below dependency issue.
com.adobe.cq.launches.api,version=[1.3,2) -- Cannot be resolved
I included the below dependency in pom.xml
<dependency>
<groupId>com.adobe.cq</groupId>
<artifactId>cq-launches-api</artifactId>
<version>5.6.4</version>
</dependency>
Solved! Go to Solution.
Views
Replies
Total Likes
For 6.1, you should add AEM Uber Jar as dependency and remove the references to all individual API dependencies which are present in Uber Jar.
<dependency> <groupId>com.adobe.aem</groupId> <artifactId>uber-jar</artifactId> <version>6.1.0</version> <classifier>obfuscated-apis</classifier> <scope>provided</scope> </dependency>
Views
Replies
Total Likes
Which version of AEM are you using and see what version is used in that using depfinder console (system/console/depfinder)
Views
Replies
Total Likes
AEM 6.1
its /libs/launches/install/cq-launches-api-5.8.6.jar
But could not find this jar in adobe repo - https://repo.adobe.com/nexus/content/groups/public/com/adobe/cq/cq-launches-api/
Views
Replies
Total Likes
Yes .. some of the jars are missing in repo. Please raise a support ticket to get the same
Views
Replies
Total Likes
For 6.1, you should add AEM Uber Jar as dependency and remove the references to all individual API dependencies which are present in Uber Jar.
<dependency> <groupId>com.adobe.aem</groupId> <artifactId>uber-jar</artifactId> <version>6.1.0</version> <classifier>obfuscated-apis</classifier> <scope>provided</scope> </dependency>
Views
Replies
Total Likes