Guest User

Untitled

a guest
Jul 29th, 2012
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. Configure maven-shade-plugin to include src/main/webapp
  2. <configuration>
  3. <artifactSet>
  4. <includes>
  5. <include>*</include>
  6. <include>*:*</include>
  7. </includes>
  8. </artifactSet>
  9. </configuration>
  10.  
  11. <build>
  12. <resources>
  13. <resource>
  14. <directory>src/main/webapp</directory>
  15. </resource>
  16. </resources>
  17. </build>
Advertisement
Add Comment
Please, Sign In to add comment