Expand my Community achievements bar.

Repo Url Unavailability

Avatar

Level 2

Hi Team

 

I am not able access the following repo URLs.

Could you please help me.

 

https://downloads.experiencecloud.adobe.com/content/maven/public

https://repo.adobe.com/nexus/content/groups/public

 

Regards

Bishnu

Topics

Topics help categorize Community content and increase your ability to discover relevant content.

3 Replies

Avatar

Community Advisor

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:

Avatar

Level 2

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.te...

 

Regards

Bishnu

Avatar

Level 5

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.