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

Getting error while building angular SPA with AEM 6.5 project

Avatar

Community Advisor

Hi,

 

I am getting error while building angular SPA with AEM 6.5 project both from eclipse and cmd prompt.

Error:

Failed to execute goal com.github.eirslett:frontend-maven-plugin:1.6:install-node-and-npm (install node and npm) on project spa-angular-app: Could not download Node.js from: https://nodejs.org/dist/v11.2.0/win-x64/node.exe: Could not download https://nodejs.org/dist/v11.2.0/win-x64/node.exe: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target -> [Help 1]

santhosh_kumark_0-1603898003480.png

I tried adding vm parameters "-Djavax.net.ssl.trustStore" also, but it doesn't work. Can anyone help with this.

 

Regards,

Santosh

 

1 Accepted Solution

Avatar

Correct answer by
Level 4

As an alternative, install node and npm manually and run the following commands in the same order.

In ui.frontend

npm install

npm run build

In ui.apps

mvn clean install -PautoInstallPackage.

It will push both your Angular code as well as AEM code.

View solution in original post

7 Replies

Avatar

Community Advisor

Hi @santhosh_kumark ,

It seems your maven repo is trying to connect with https remote repo and there it is failing, it seems like you will have to make some changes at the settings.xml see the below post https://stackoverflow.com/questions/25911623/problems-using-maven-and-ssl-behind-proxy

I think this will help.

Umesh Thakur

Avatar

Community Advisor

Hi @santhosh_kumark 

Node 11.2.0 installed in your system? If not try installing it manually and set PATH. If it is already installed refer the below link and try.

https://stackoverflow.com/questions/21076179/pkix-path-building-failed-and-unable-to-find-valid-cert...

Hope this will help.

AG

Avatar

Community Advisor
Hi @Anudeep_Garnepudi, Yes node is installed but its not working. Tried importing the keytool cert also but no luck. Any alternatives please?

Avatar

Correct answer by
Level 4

As an alternative, install node and npm manually and run the following commands in the same order.

In ui.frontend

npm install

npm run build

In ui.apps

mvn clean install -PautoInstallPackage.

It will push both your Angular code as well as AEM code.

Avatar

Community Advisor

Hi @santhosh_kumark 

Try updating your Java version. If you are currently running Java 8, update to latest Java 8 version that is available. Hope this may resolve your issue.

AG