Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.
SOLVED

aem-sample-we-retail-master Issues

Avatar

Level 6

Hi,

i have downloaded aem-sample-we-retail-master code git and i have build in my local by using mvn -PautoInstallPackage clean install command while building i got below error.

Any help to solve this build issue kindly suggest

 

manikanthar1295_0-1620649673305.png

 

 

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

Hi, @manikanthar1295.

 

As per the screenshot, the user that you are using to install the code into your repository does not have access. hence you see "Unauthorized."

 

Can you please check the user in your main pom.xml and correct the id and pwd like below?

 

KiranVedantam1992_0-1620650177330.png

Hope this helps.

 

Thanks,

Kiran Vedantam

 

View solution in original post

2 Replies

Avatar

Correct answer by
Community Advisor

Hi, @manikanthar1295.

 

As per the screenshot, the user that you are using to install the code into your repository does not have access. hence you see "Unauthorized."

 

Can you please check the user in your main pom.xml and correct the id and pwd like below?

 

KiranVedantam1992_0-1620650177330.png

Hope this helps.

 

Thanks,

Kiran Vedantam

 

Avatar

Employee Advisor

Hi @manikanthar1295!

 

The error message of your Maven build points out that the request to AEMs Package Manager to install the application package to your AEM instance is unauthorized. Please double check that the according credentials are present and correct in your projects pom.xml file (in the projects "properties" section):

  • sling.user
  • sling.password

You will find an example in the pom.xml from the example project.

If you don't want to put your credentials into the pom.xml file you can also provide them as parameters to the Maven build on the command line or source them from a different source, e. g. from an environment variable.

 

Hope that helps!