repo.adobe.com is down/broken? | Community
Skip to main content
New Participant
March 24, 2022

repo.adobe.com is down/broken?

  • March 24, 2022
  • 5 replies
  • 2580 views

I can't build my project because I can't download the maven artifacts. It appears that the problem is the repo.adobe.com is broken; when I visit that site, I get something like this for any page:

 

ResourceNotFoundThe specified resource does not exist. RequestId:c737433e-101e-001f-2fa1-3fd11a000000 Time:2022-03-24T17:04:43.6647596Z

 

I'm trying to get adobe-forms-client, adobe-livecycle-client, adobe-usermanager-client, and adobe-output-client. 

 

Are these artifacts available anywhere else?

 

Thanks!

 

  -- Mike

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.

5 replies

New Participant
March 25, 2022

Yes, I added the adobe public profile in my settings.xml (and made it active) but I'm still unable to download the artifacts.  I found the artifacts in a co-worker's local repository and have just checked them into my project rather than use Adobe's repo.

New Participant
September 18, 2023

Any further update on this issue. We are also running into the same issue using this URL:

repo.adobe.com/nexus/content/repositories/public/

 

This XML file does not appear to have any style information associated with it. The document tree is shown below.
<Error>
<Code>BlobNotFound</Code>
<Message>The specified blob does not exist. RequestId:a3c06246-901e-000e-7c45-eae601000000 Time:2023-09-18T15:36:33.1893814Z</Message>
</Error>
New Participant
September 21, 2023

Did you get any solution to this ?

Even i am unable to use any dependency in my POM.XML

Any dependency i add throws error like below

 

Could not find artifact com.adobe.livecycle:adobe-livecycle-cq-integration-api:pom:1.1.10 in adobe-public-releases (https://repo.adobe.com/nexus/content/groups/public)
Could not find artifact com.adobe.livecycle:adobe-livecycle-cq-integration-api:pom:1.1.10 in adobe-public-releases (https://repo.adobe.com/nexus/content/groups/public)

Anmol_Bhardwaj
New Participant
March 25, 2022

Did you add adobe public profile in your setting.xml in maven?

  1. Create a file named settings.xml at ~/.m2/settings.xml if it doesn’t exist already.
  2. Add the adobe-public profile to the settings.xml file
<settings xmlns="https://maven.apache.org/SETTINGS/1.0.0"
  xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="https://maven.apache.org/SETTINGS/1.0.0
                      https://maven.apache.org/xsd/settings-1.0.0.xsd">
<profiles>
 <!-- ====================================================== -->
 <!-- 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>
</profiles>
 <activeProfiles>
     <activeProfile>adobe-public</activeProfile>
 </activeProfiles>
</settings>

Verify that the adobe-public profile is active by running the following command:

$ mvn help:effective-settings

 

New Participant
August 1, 2023

Hello,

I have same problem.

I updated settings.xml

But maven client can't retrieve Adobe pom.xml and artifacts:

Could not find artifact com.adobe.livecycle:adobe-livecycle-client:jar:11.0.0 in adobe-public-releases (https://repo.adobe.com/nexus/content/groups/public)

 

Thank you for your help.

Anmol_Bhardwaj
New Participant
August 8, 2023

Hi @loizbak & @michaeljmuller 

Try adding -Padobe-public.

Sometimes even when we add public profile in maven, it still uses the maven one, this will ensure that it uses the adobe public profile when building.

New Participant
March 24, 2022

I did see this article:

 

https://experienceleague.adobe.com/docs/experience-cloud-kcs/kbarticles/KA-17454.html?lang=en

 

which says that I won't be able to access the artifacts from the browser.  I tried to wget the artifacts from the command line, but that returns a 404 as well.

 

I did follow the instructions on that page; I've got the adobe public profile in my settings.xml (and the activeProfiles setting as well).  

New Participant
March 24, 2022

The error when I run the mvn command to build my project:

 

Could not find artifact com.adobe.livecycle:adobe-forms-client:jar:11.0.0 in apachemvn2 (https://repo.maven.apache.org/maven2)

New Participant
March 24, 2022

Actually, I get a slightly different error when I go to the actual asset's URL:

 

https://repo.adobe.com/nexus/content/repositories/public/com/adobe/livecycle/adobe-forms-client/11.0.0/adobe-forms-client-11.0.0.jar

 

This gives me:

 

BlobNotFoundThe specified blob does not exist. RequestId:5ed2cbfe-401e-0007-43a5-3ffc8f000000 Time:2022-03-24T17:32:19.2452446Z