Skip to content

Instantly share code, notes, and snippets.

@seogi1004
Created December 10, 2018 14:07
Show Gist options
  • Save seogi1004/c015ca5e2664594eac008be30667ee91 to your computer and use it in GitHub Desktop.
Save seogi1004/c015ca5e2664594eac008be30667ee91 to your computer and use it in GitHub Desktop.
<plugin>
<groupId>com.github.eirslett</groupId>
<artifactId>frontend-maven-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>install node and npm</id>
<goals>
<goal>install-node-and-npm</goal>
</goals>
<phase>generate-resources</phase>
</execution>
<execution>
<id>npm install</id>
<goals>
<goal>npm</goal>
</goals>
<configuration>
<arguments>install</arguments>
</configuration>
</execution>
<execution>
<id>npm build</id>
<goals>
<goal>npm</goal>
</goals>
<configuration>
<arguments>run dist</arguments>
</configuration>
</execution>
</executions>
<configuration>
<nodeVersion>v10.10.0</nodeVersion>
<npmVersion>6.4.1</npmVersion>
</configuration>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment