Last active
February 26, 2016 10:29
-
-
Save afsinka/2bda3f5d4f2614fcc06e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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