Expand my Community achievements bar.

Adobe Summit 2025: AEM Session Recordings Are Live! Missed a session or want to revisit your favorites? Watch the latest recordings now.

Mark Solution

This conversation has been locked due to inactivity. Please create a new post.

Error while doing "mvn install"

Avatar

Community Advisor

Failed to execute goal com.github.eirslett:frontend-maven-plugin:1.12.0:npm (npm install) on project mysite.ui.frontend: Failed to run task: 'npm install' failed. org.apache.commons.exec.ExecuteException: Process exited with an error: 1 (Exit value: 1)

 

The error gets resolved when I manually create the node_modules present under "ui.frontend\node_modules" from the other machine.

 

Any pointers what could be wrong that on couple of machine the "npm install" is not working.

2 Replies

Avatar

Community Advisor

Hi @ShaileshBassi ,

Please check this thread have similar issue resolved: 

It looks like you are using the latest Node and npm version which may not support some node modules that is installed from the package.json. Try to play around with the npm version and see if that works. From testing myself, I realize that the latest Node and NPM version do not work.

eg.

<npmVersion>6.9.0</npmVersion> to <npmVersion>3.10.8 </npmVersion>

Hope that help!

Regards,

Santosh


Santosh Sai

AEM BlogsLinkedIn


Avatar

Community Advisor

Thanks for the information. I have already went through the document mentioned i.e. https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/error-failed-to-execute-go....

I am using the below configuration. Machine - Dell, Ram 16GB and both having same windows.

<nodeVersion>v12.22.7</nodeVersion>
<npmVersion>6.14.0</npmVersion>

But it is running successfully on one machine and not running on other is quite surprising.

Thanks