Repo Url Unavailability | Community
Skip to main content
This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.

2 replies

lukasz-m
Community Advisor
Community Advisor
March 12, 2025

Hi @bishnu_satpathy_tcs,

I think repositories are ok. However please be aware that it can not be explored via browser it is readable for maven only.

This is how documentation describes it:


Note: repo.adobe.com is currently not configured to be browsable with a normal browser, but maven use only.


Please check below link for all the details:

Level 2
March 12, 2025

thanks for the response @lukasz-m .

 

I am trying to access it via code repository only. following is the error I am getting.

 

Failed to collect dependencies at com.adobe.cq:core.wcm.components.testing.aem-mock-plugin:jar:2.8.0: Failed to read artifact descriptor for com.adobe.cq:core.wcm.components.testing.aem-mock-plugin:jar:2.8.0: Could not transfer artifact com.adobe.cq:core.wcm.components.testing.aem-mock-plugin:pom:2.8.0 from/to adobe-aem-releases (https://downloads.experiencecloud.adobe.com/content/maven/public😞 transfer failed for https://downloads.experiencecloud.adobe.com/content/maven/public/com/adobe/cq/core.wcm.components.testing.aem-mock-plugin/2.8.0/core.wcm.components.testing.aem-mock-plugin-2.8.0.pom

 

Regards

Bishnu

giuseppebaglio
Level 10
March 13, 2025

By using the following settings 

 

<!-- ====================================================== --> <!-- A D O B E P U B L I C P R O F I L E --> <!-- ====================================================== --> <profile> <id>adobe-public</id> <activation> <activeByDefault>true</activeByDefault> </activation> <properties> <releaseRepository-Id>adobe-public-releases</releaseRepository-Id> <releaseRepository-Name>Adobe Public Releases</releaseRepository-Name> <releaseRepository-URL>https://repo.adobe.com/nexus/content/groups/public</releaseRepository-URL> </properties> <repositories> <repository> <id>adobe-public-releases</id> <name>Adobe Public Repository</name> <url>https://repo.adobe.com/nexus/content/groups/public</url> <releases> <enabled>true</enabled> <updatePolicy>never</updatePolicy> </releases> <snapshots> <enabled>false</enabled> </snapshots> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>adobe-public-releases</id> <name>Adobe Public Repository</name> <url>https://repo.adobe.com/nexus/content/groups/public</url> <releases> <enabled>true</enabled> <updatePolicy>never</updatePolicy> </releases> <snapshots> <enabled>false</enabled> </snapshots> </pluginRepository> </pluginRepositories> </profile>

 

Download works fine:

 

[INFO] Building content-package: /Users/user/Projects/aem-repo/ui.apps.structure/target/aem.projects.ui.apps.structure-1.0.0-SNAPSHOT.zip Downloading from central: https://repo.maven.apache.org/maven2/com/adobe/cq/core.wcm.components.testing.aem-mock-plugin/2.8.0/core.wcm.components.testing.aem-mock-plugin-2.8.0.pom

 

Please check if the settings.xml file is correct. Also, ensure that your project's specific pom.xml files are pointing to publicly available Maven repositories correctly. Lastly, if you're using a Maven repository within under company system, verify whether they allow the download of packages that are not already available in their repository.

 
kautuk_sahni
Community Manager
Community Manager
April 1, 2025

@bishnu_satpathy_tcs Did you find the suggestions helpful? Please let us know if you need more information. If a response worked, kindly mark it as correct for posterity; alternatively, if you found a solution yourself, we’d appreciate it if you could share it with the community. Thank you!

Kautuk Sahni