Advertisement
Guest User

Untitled

a guest
Feb 27th, 2020
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.92 KB | None | 0 0
  1. <plugin>
  2.                 <groupId>com.github.eirslett</groupId>
  3.                 <artifactId>frontend-maven-plugin</artifactId>
  4.                 <version>1.6</version>
  5.                 <executions>
  6.                     <execution>
  7.                         <id>install node and npm</id>
  8.                         <goals>
  9.                             <goal>install-node-and-npm</goal>
  10.                         </goals>
  11.                         <phase>generate-resources</phase>
  12.                     </execution>
  13.                     <execution>
  14.                         <id>npm install</id>
  15.                         <goals>
  16.                             <goal>npm</goal>
  17.                         </goals>
  18.                         <configuration>
  19.                             <arguments>install src/main/web</arguments>
  20.                         </configuration>
  21.                     </execution>
  22.                     <execution>
  23.                         <id>webpack build</id>
  24.                         <goals>
  25.                             <goal>webpack</goal>
  26.                         </goals>
  27.                         <configuration>
  28.                             <arguments>${webpack.arguments}</arguments>
  29.                         </configuration>
  30.                     </execution>
  31.                 </executions>
  32.                 <configuration>
  33.                     <nodeVersion>v9.11.2</nodeVersion>
  34.                     <npmVersion>6.1.0</npmVersion>
  35.                 </configuration>
  36.             </plugin>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement