Hi Team
Challenges is not able to install any extensions at Visual Source code due secure network.
we are able build all module except ui-frontend which required install npm and node.
Is possible stop Insall or download npm and node used local installed npm and node while using "frontend-maven-plugin" or advise how refer the proxy local registry.
Here is Error:
[ERROR] Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.3.2:exec (npm install (clean)) on project dmaf.ui.frontend: Command execution failed.: Process exited with an error: 1 (Exit value: 1) -> [Help 1]
npm ERR! code ETIMEDOUT
npm ERR! syscall connect
npm ERR! errno ETIMEDOUT
npm ERR! network request to https://registry.npmjs.org/acorn failed, reason: connect ETIMEDOUT 104.16.31.34:443
npm ERR! network This is a problem related to network connectivity.
npm ERR! network In most cases you are behind a proxy or have bad network settings.
npm ERR! network
npm ERR! network If you are behind a proxy, please make sure that the
npm ERR! network 'proxy' config is set properly. See: 'npm help config'
ui-frontend module POM.xml
<plugin>
<groupId>com.github.eirslett</groupId>
<artifactId>frontend-maven-plugin</artifactId>
<executions>
<execution>
<id>npm run prod</id>
<phase>generate-resources</phase>
<goals>
<goal>npm</goal>
</goals>
<configuration>
<arguments>run prod</arguments>
</configuration>
</execution>
</executions>
</plugin>
main pom.xml
<configuration>
<nodeVersion>v18.18.2</nodeVersion>
<npmVersion>9.8.1</npmVersion> </configuration>
Local env
npm and node versions same
C:\Users\userid\npmrc.txt
always-auth=true
registry=http://xxxxxxxxxxxxxxxx/nexus/repository/Publicnpm/
//xxxxxxxxxxx:8081/:_auth=xxxxxxxxxxxxxxxxx
Not sure how to check npmrc.txt configuration working or not?
Regards
Vara