ACS commons (5.3.0)Not getting downloaded from Maven Repo | Community
Skip to main content
Level 3
August 17, 2022
Solved

ACS commons (5.3.0)Not getting downloaded from Maven Repo

  • August 17, 2022
  • 2 replies
  • 3686 views
Hi when i am trying download acs commons 5.3.0 as a dependency i am getting this error Could not find artifact com.adobe.acs:acs-aem-commons:zip:min:5.3.0 in adobe-public-releases (https://repo.adobe.com/nexus/content/groups/public) With Acs commons version 5.2.0 it is working fine.Wehn I am using 6.5.12 version. Anything else we need to check
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 joerghoh

repo.adobe.com is not available any more, please remove it from your pom.xml (if available).

 

ACS AEM Commons 5.3.2 should be available via the usual maven mirrors.

2 replies

tb1687196
Level 2
August 17, 2022

Hi @sb2512 ,

Have you added the dependency correctly in your pom file. Please add below section in your pom and try give the build. 

<!-- https://mvnrepository.com/artifact/com.adobe.acs/acs-aem-commons-bundle -->
<dependency>
<groupId>com.adobe.acs</groupId>
<artifactId>acs-aem-commons-bundle</artifactId>
<version>5.3.0</version>
</dependency>

joerghoh
Adobe Employee
joerghohAdobe EmployeeAccepted solution
Adobe Employee
August 17, 2022

repo.adobe.com is not available any more, please remove it from your pom.xml (if available).

 

ACS AEM Commons 5.3.2 should be available via the usual maven mirrors.

Level 2
September 14, 2022

Hi,

 

We are using AEM 6.5.10 and trying to upgrade acs commons version from 4.0.0 to 5.3.0. Getting the below issue

 

Failed to collect dependencies at com.adobe.acs:acs-aem-commons-content:zip:5.3.0: Failed to read artifact descriptor for com.adobe.acs:acs-aem-common
s-content:zip:5.3.0: Could not transfer artifact com.adobe.acs:acs-aem-commons-content:pom:5.3.0 from/to adobe-public-releases (https://repo.adobe.com/nexus/content/groups/public)

 

POM configuration

<dependency>
<groupId>com.adobe.acs</groupId>
<artifactId>acs-aem-commons-content</artifactId>
<version>5.3.0</version>
<type>content-package</type>
</dependency>

 

Do we need to make any changes to Adobe repo URL? 

February 7, 2024

No, we didn't remove references to repo.adobe.com from .m2/settings.xml.

 

We are getting build success for the below acs commons dependency in pom 

acs commons bundle

<dependency>
<groupId>com.adobe.acs</groupId>
<artifactId>acs-aem-commons-bundle</artifactId>
<version>5.3.2</version>
<scope>provided</scope>
</dependency>

---------------------

acs commons content

<dependency>
<groupId>com.adobe.acs</groupId>
<artifactId>acs-aem-commons-content</artifactId>
<version>4.0.0</version>
<type>content-package</type>
</dependency>

 

but acs commons bundle not downloading.

Do we need to download and install the acs commons bundle(5.3.2) through package manager?


I am encountering the same issue