launch api dependency | Community
Skip to main content
selvaganesh
New Participant
October 16, 2015
Solved

launch api dependency

  • October 16, 2015
  • 4 replies
  • 1264 views

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>

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Kunal_Gaba_

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>
    

4 replies

Lokesh_Shivalingaiah
New Participant
October 16, 2015

Which version of AEM are you using and see what version is used in that using depfinder console (system/console/depfinder)

selvaganesh
New Participant
October 16, 2015

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/

Lokesh_Shivalingaiah
New Participant
October 16, 2015

Yes .. some of the jars are missing in repo. Please raise a support ticket to get the same

Kunal_Gaba_
Kunal_Gaba_Accepted solution
New Participant
October 16, 2015

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>