我正在使用maven来构建我的角度应用程序并在tomcat中进行部署。在pom.xml
中,我提到了以下代码
<execution>
<id>install node and npm</id>
<goals>
<goal>install-node-and-npm</goal>
</goals>
<phase>validate</phase>
</execution>
<execution>
<id>npm install</id>
<goals>
<goal>npm</goal>
</goals>
<phase>validate</phase>
</execution>
这很好,应用程序也很好。
问题是,每当我构建代码时,它都会安装node和rpm以及所有软件包,这需要很长时间才能完成构建过程。有什么解决办法吗?