fix(web): npm tasks in pom.xml

This commit is contained in:
1ambda 2016-11-19 21:37:26 +09:00
parent 6568960571
commit 532f1e697b

View file

@ -109,26 +109,29 @@
<goals>
<goal>npm</goal>
</goals>
</execution>
<execution>
<id>grunt build</id>
<goals>
<goal>npm</goal>
</goals>
<configuration>
<arguments>build</arguments>
<arguments>install</arguments>
</configuration>
</execution>
<execution>
<id>grunt test</id>
<id>npm build</id>
<goals>
<goal>npm</goal>
</goals>
<configuration>
<arguments>run build</arguments>
</configuration>
</execution>
<execution>
<id>npm test</id>
<goals>
<goal>npm</goal>
</goals>
<phase>test</phase>
<configuration>
<arguments>test</arguments>
<arguments>run test</arguments>
</configuration>
</execution>