Repository: incubator-griffin Updated Branches: refs/heads/master b5fce5247 -> 2f1fa71df
use maven to install bower in ui project Author: William Guo <[email protected]> Closes #24 from guoyuepeng/20170511. Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/2f1fa71d Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/2f1fa71d Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/2f1fa71d Branch: refs/heads/master Commit: 2f1fa71dff7e4f17624d7b24376529980eb832ba Parents: b5fce52 Author: William Guo <[email protected]> Authored: Thu May 11 13:55:25 2017 +0800 Committer: William Guo <[email protected]> Committed: Thu May 11 13:55:25 2017 +0800 ---------------------------------------------------------------------- ui/pom.xml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-griffin/blob/2f1fa71d/ui/pom.xml ---------------------------------------------------------------------- diff --git a/ui/pom.xml b/ui/pom.xml index 8f66039..b8f9eb3 100644 --- a/ui/pom.xml +++ b/ui/pom.xml @@ -31,6 +31,25 @@ <build> <plugins> <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>exec-maven-plugin</artifactId> + <executions> + <execution> + <id>exec-bower-install</id> + <phase>generate-sources</phase> + <configuration> + <executable>bower</executable> + <arguments> + <argument>install</argument> + </arguments> + </configuration> + <goals> + <goal>exec</goal> + </goals> + </execution> + </executions> + </plugin> + <plugin> <artifactId>maven-resources-plugin</artifactId> <version>3.0.2</version> <executions>
