Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Merge pull request #358 from vrockai/HAWKULAR-476
Browse files Browse the repository at this point in the history
HAWKULAR-476 Updated the cache profile
  • Loading branch information
mtho11 committed Jul 27, 2015
2 parents d86ae0e + d8bcac5 commit 9e46402
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions console/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,51 @@
</filesets>
</configuration>
</plugin>

<plugin>
<groupId>com.github.eirslett</groupId>
<artifactId>frontend-maven-plugin</artifactId>
<version>${node.maven.plugin.version}</version>

<configuration>
<workingDirectory>target/gulp-build/</workingDirectory>
</configuration>

<executions>
<execution>
<id>npm install</id>
<goals>
<goal>npm</goal>
</goals>
<phase>prepare-package</phase>
<configuration>
<arguments>install</arguments>
</configuration>
</execution>

<execution>
<id>bower install</id>
<goals>
<goal>bower</goal>
</goals>
<phase>prepare-package</phase>
<configuration>
<arguments>install</arguments>
</configuration>
</execution>

<execution>
<id>gulp build</id>
<goals>
<goal>gulp</goal>
</goals>
<phase>prepare-package</phase>
<configuration>
<arguments>build</arguments>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
Expand Down

0 comments on commit 9e46402

Please sign in to comment.