Advertisement
Guest User

Untitled

a guest
Dec 5th, 2016
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. <plugins>
  2. <plugin>
  3. <groupId>org.codehaus.mojo</groupId>
  4. <artifactId>exec-maven-plugin</artifactId>
  5. <version>1.5.0</version>
  6. <executions>
  7. <execution>
  8. <phase>generate-sources</phase>
  9. <goals>
  10. <goal>exec</goal>
  11. </goals>
  12. </execution>
  13. </executions>
  14. <configuration>
  15. <executable>bower</executable>
  16. <arguments>
  17. <argument>install</argument>
  18. </arguments>
  19. <workingDirectory>/</workingDirectory>
  20. </configuration>
  21. </plugin>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement