


Hi,
I'm creating a project with the archetypeVersion 25 for a SPA. But I am having the below error when I'm trying to deploy:
[ERROR] Failed to execute goal on project aem-mycmscoe-spa.core: Could not resolve dependencies for project com.cmscoe.spa:aem-mycmscoe-spa.core:jar:1.0.0-SNAPSHOT: Failure to find com.adobe.aem:uber-jar:jar:apis:6.5.7 in https://repo.adobe.com/nexus/content/groups/public was cached in the local repository, resolution will not be reattempted until the update interval of adobe-public-releases has elapsed or updates are forced -> [Help 1]
Root POM:
<dependency>
<groupId>com.adobe.aem</groupId>
<artifactId>uber-jar</artifactId>
<version>6.5.7</version>
<classifier>apis</classifier>
<scope>provided</scope>
</dependency>
Core POM:
<dependency>
<groupId>com.adobe.aem</groupId>
<artifactId>uber-jar</artifactId>
<classifier>apis</classifier>
</dependency>
Is the repo down? Or any idea to resolve this issue?
Views
Replies
Sign in to like this content
Total Likes
@RamireFer The repo seems to be up. Can you try to remove <classifier>apis</classifier> from the pom.xml (both) and try?
https://mvnrepository.com/artifact/com.adobe.aem/uber-jar/6.5.7
<!-- https://mvnrepository.com/artifact/com.adobe.aem/uber-jar -->
<dependency>
<groupId>com.adobe.aem</groupId>
<artifactId>uber-jar</artifactId>
<version>6.5.7</version>
<scope>provided</scope>
</dependency>
@RamireFer The repo seems to be up. Can you try to remove <classifier>apis</classifier> from the pom.xml (both) and try?
https://mvnrepository.com/artifact/com.adobe.aem/uber-jar/6.5.7
<!-- https://mvnrepository.com/artifact/com.adobe.aem/uber-jar -->
<dependency>
<groupId>com.adobe.aem</groupId>
<artifactId>uber-jar</artifactId>
<version>6.5.7</version>
<scope>provided</scope>
</dependency>
Views
Replies
Sign in to like this content
Total Likes
Views
Replies
Sign in to like this content
Total Likes
Hi, Can you please check which remote repository you are trying to get uber-jar. It seems uber jar is not available at https://repo.adobe.com/nexus/content/groups/public/com/adobe/aem/uber-jar/
but on https://mvnrepository.com/artifact/com.adobe.aem/uber-jar/6.5.7
Instructions on how to use repo are displayed on https://repo.adobe.com/index.html
Please use "https" protocol instead of "http"
Also, have a look at: https://experienceleague.adobe.com/docs/experience-cloud-kcs/kbarticles/KA-17454.html?lang=en
Views
Replies
Sign in to like this content
Total Likes