Mvn 실행중 자동적으로, nodejs를 download 받아 설치해야 하는경우,
https URL 문제로, proxy에 걸려서 설치가 안되는 경우 발생함.
이런 경우 여러 방법을 써봤지만...https 문제 해결이 되지 않는경우.
다음과 같이 node경로를 지정하면 해당 문제를 해결 할 수 있음.
error )
Could not download https://nodejs.org/dist
pom.xml의 node verson에 아래 내용 추가하면..
해결됨..!!
<nodeDownloadRoot>https://nodejs.org/dist/</nodeDownloadRoot> |
<executions> <execution> <id>install node and npm</id> <goals> <goal>install-node-and-npm</goal> </goals> <configuration> <nodeVersion>v5.11.1</nodeVersion> <npmVersion>3.9.6</npmVersion> <nodeDownloadRoot>http://nodejs.org/dist/</nodeDownloadRoot> </configuration> </execution> |