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
Solved! Go to Solution.
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>
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.
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>
Views
Replies
Total Likes
Views
Replies
Total Likes
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