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
Views
Replies
Total Likes
Actually, I get a slightly different error when I go to the actual asset's URL:
This gives me:
BlobNotFoundThe specified blob does not exist. RequestId:5ed2cbfe-401e-0007-43a5-3ffc8f000000 Time:2022-03-24T17:32:19.2452446Z
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)
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).
Did you add adobe public profile in your setting.xml in maven?
<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
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.
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.
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.
Any further update on this issue. We are also running into the same issue using this URL:
repo.adobe.com/nexus/content/repositories/public/
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)