Skip to content

Instantly share code, notes, and snippets.

@afsinka
Last active February 26, 2016 10:29
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 afsinka/2bda3f5d4f2614fcc06e to your computer and use it in GitHub Desktop.
Save afsinka/2bda3f5d4f2614fcc06e to your computer and use it in GitHub Desktop.
<plugin>
<groupId>com.github.eirslett</groupId>
<artifactId>frontend-maven-plugin</artifactId>
<version>0.0.27</version>
<executions>
<execution>
<id>install node and npm</id>
<goals>
<goal>install-node-and-npm</goal>
</goals>
<phase>generate-resources</phase>
<configuration>
<nodeVersion>v0.10.18</nodeVersion>
<npmVersion>1.3.8</npmVersion>
<nodeDownloadRoot>https://nodejs.org/dist/</nodeDownloadRoot>
<npmDownloadRoot>http://pkgs.fedoraproject.org/repo/pkgs/npm/npm-1.3.8.tgz/494b89b1b32fa2f0e653d38b08bee0ae/</npmDownloadRoot>
<installDirectory>WebContent</installDirectory>
</configuration>
</execution>
<execution>
<id>grunt-default</id>
<goals>
<goal>grunt</goal>
</goals>
<configuration>
<workingDirectory>WebContent</workingDirectory>
<arguments>build</arguments>
</configuration>
</execution>
</executions>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment