Skip to content

Instantly share code, notes, and snippets.

@stephan-mueller
Created August 10, 2015 20:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stephan-mueller/fef01820ec1c8cb7e80e to your computer and use it in GitHub Desktop.
Save stephan-mueller/fef01820ec1c8cb7e80e to your computer and use it in GitHub Desktop.
frontend-maven-plugin: installing node and npm
<executions>
<execution>
<id>install node and npm</id>
<goals>
<goal>install-node-and-npm</goal>
</goals>
<phase>generate-resources</phase>
<configuration>
<nodeVersion>v0.12.7</nodeVersion>
<npmVersion>2.11.3</npmVersion>
</configuration>
</execution>
</executions>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment