Dependency on com.day.cq:parent:pom:82 in 6.5.6 uber-jar | Community
Skip to main content
New Participant
September 9, 2020
Solved

Dependency on com.day.cq:parent:pom:82 in 6.5.6 uber-jar

  • September 9, 2020
  • 3 replies
  • 2594 views

I'm unable to build projects after switching from uber-jar 6.5.5 to uber-jar 6.5.6. Maven is unable to find com.day.cq:parent:pom:82 artifact declared in 6.5.6 pom

 

<parent> <groupId>com.day.cq</groupId> <artifactId>parent</artifactId> <version>82</version> </parent>

 

This section was no present in 6.5.5 uber-jar. Was correct uber-jar pom uploaded?

The same issue might apply to 6.4.8.2

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 Hamid1350

Pom issue is resolved now and uber jar is posted with new dependency as follows:

<dependency>

      <groupId>com.adobe.aem</groupId>

      <artifactId>uber-jar</artifactId>

      <version>6.5.6-1.0</version>

       <scope>provided</scope>

</dependency>

3 replies

koenve
New Participant
October 15, 2020

Hey

 

Created a support case with Adobe customer care, and they pointed out that the way you're referencing the uber jar has changed. As outlined on the SP6 release notes, the new way to include the uber-jar is: 

 

<dependency> <groupId>com.adobe.aem</groupId> <artifactId>uber-jar</artifactId> <version>6.5.6-1.0</version> </dependency>

 

Hope this helps!

 

With kind regards

 

Koen

Hamid1350Accepted solution
Employee
September 10, 2020

Pom issue is resolved now and uber jar is posted with new dependency as follows:

<dependency>

      <groupId>com.adobe.aem</groupId>

      <artifactId>uber-jar</artifactId>

      <version>6.5.6-1.0</version>

       <scope>provided</scope>

</dependency>

JakubLGAuthor
New Participant
September 10, 2020
Employee
September 9, 2020

Uber jars are publicly available on maven central, it is the issue with uploaded pom which has incorrect dependency which Adobe is working to fix.