Guest User

Untitled

a guest
Jun 21st, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.58 KB | None | 0 0
  1. <plugin>
  2. <groupId>org.codehaus.mojo</groupId>
  3. <artifactId>exec-maven-plugin</artifactId>
  4. <executions>
  5. <execution>
  6. <id>step-exec2-api</id>
  7. <phase>process-classes</phase>
  8. <goals>
  9. <goal>exec</goal>
  10. </goals>
  11. <configuration>
  12. <executable>bundle</executable>
  13. <workingDirectory>target/slate-api</workingDirectory>
  14. <arguments>
  15. <argument>install</argument>
  16. </arguments>
  17. </configuration>
  18. </execution>
  19. <execution>
  20. <id>step-exec3-api</id>
  21. <phase>process-classes</phase>
  22. <goals>
  23. <goal>exec</goal>
  24. </goals>
  25. <configuration>
  26. <executable>bundle</executable>
  27. <workingDirectory>target/slate-api</workingDirectory>
  28. <arguments>
  29. <argument>exec</argument>
  30. <argument>middleman</argument>
  31. <argument>build</argument>
  32. </arguments>
  33. </configuration>
  34. </execution>
  35. </executions>
  36. </plugin>
Add Comment
Please, Sign In to add comment