run bower during maven build

This commit is contained in:
Athou
2015-01-05 14:56:31 +01:00
parent 06151eab3b
commit 04c0833111
3 changed files with 16 additions and 18 deletions

11
pom.xml
View File

@@ -99,7 +99,7 @@
<plugin>
<groupId>com.github.eirslett</groupId>
<artifactId>frontend-maven-plugin</artifactId>
<version>0.0.19</version>
<version>0.0.20</version>
<executions>
<execution>
<id>install node and npm</id>
@@ -119,6 +119,15 @@
</goals>
<phase>generate-resources</phase>
</execution>
<execution>
<id>bower install</id>
<goals>
<goal>bower</goal>
</goals>
<configuration>
<arguments>install</arguments>
</configuration>
</execution>
<execution>
<id>gulp build</id>
<goals>