Solved! Go to Solution.
Views
Replies
Total Likes
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.
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>
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.
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?
These artifacts are available the public maven archives. And repo.adobe.com is down for quite some time now.
E.g. https://search.maven.org/artifact/com.adobe.acs/acs-aem-commons-content/5.3.0/content-package
(and 5.3.4 is the latest public release)
Hi Jorg_Hoh,
Thanks for the reply.
Since repo.adobe.com is down, do we need to download and copy acs commons zip file to .m2 folder manually?
No, maven should download it from its default repositories.
yes, it should download from default repo but we are getting the below issue during maven build only
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)
That is weird. Have you removed all references to repo.adobe.com from your .m2/settings.xml and the pom.xml?
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?
This is strange, because this bundle is available via the maven central.
https://search.maven.org/artifact/com.adobe.acs/acs-aem-commons-bundle/5.3.2/jar
I am encountering the same issue
Views
Replies
Total Likes