Я пытаюсь использовать плагин для загрузки последней версии, но это всегда занимает 0.12.4. Я хочу версию: https://nodejs.org/dist/v6.9.1/

Мой плагин pom.xml выглядит так:

<plugin>
 <groupId>com.github.eirslett</groupId>
 <artifactId>frontend-maven-plugin</artifactId>
 <version>1.1</version>
 <executions>
<execution>
<id>installing node and npm</id>
<goals>
<goal>install-node-and-npm</goal>
</goals>
<configuration>
<nodeVersion>6.9.1</nodeVersion>
</configuration>
</execution>
</executions>
<configuration>
<nodeVersion>6.9.1</nodeVersion>
</configuration>
</plugin>

Что мне здесь не хватает?

0