Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.
SOLVED

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

Avatar

Level 2

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

1 Accepted Solution

Avatar

Correct answer by
Employee

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>

View solution in original post

5 Replies

Avatar

Employee

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.

Avatar

Correct answer by
Employee

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>

Avatar

Level 3

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