Skip to content

Instantly share code, notes, and snippets.

@bchetty
Created May 24, 2013 20:39
Show Gist options
  • Select an option

  • Save bchetty/5646367 to your computer and use it in GitHub Desktop.

Select an option

Save bchetty/5646367 to your computer and use it in GitHub Desktop.
Maven plugin for YUI compressor.
<build>
<plugins>
<plugin>
<groupid>net.alchim31.maven</groupId>
<artifactid>yuicompressor-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>compress</goal>
</goals>
</execution>
</executions>
<configuration>
<excludes>
<exclude>**/*.pack.js</exclude>
<exclude>**/compressed.css</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment