Guest User

yui_compressor_plugin

a guest
Oct 31st, 2017
24
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. <plugin>
  2. <groupId>net.alchim31.maven</groupId>
  3. <artifactId>yuicompressor-maven-plugin</artifactId>
  4. <version>1.5.1</version>
  5. <executions>
  6. <execution>
  7. <id>compress-js</id>
  8. <phase>process-resources</phase>
  9. <goals>
  10. <goal>compress</goal>
  11. </goals>
  12. <configuration>
  13. <excludes>
  14. <exclude>**/webscripts/**</exclude>
  15. <exclude>**/site-webscripts/**</exclude>
  16. <exclude>**/*.lib.js</exclude>
  17. <exclude>**/*.css</exclude>
  18. </excludes>
  19. <warSourceDirectory>src/main/resources/META-INF</warSourceDirectory>
  20. <jswarn>false</jswarn>
  21. </configuration>
  22. </execution>
  23. </executions>
  24. </plugin>
Add Comment
Please, Sign In to add comment