maven之插件yuicompressor

官方地址https://github.com/davidB/yuicompressor-maven-plugin
maven使用pom.xml中
<plugin>
      <groupId> net.alchim31.maven</groupId>
      <artifactId> yuicompressor-maven-plugin</artifactId>
      <version> 1.4.0</version>
      <executions>
            <execution>
                  <goals>
                        <goal>compress</goal>
                  </goals>
            </execution>
      </executions>
      <configuration>
            <encoding>UTF-8</encoding>
            <excludes>
                  <exclude>**/*.min.*</exclude>
            </excludes>
      </configuration>
</plugin>

猜你喜欢

转载自phl.iteye.com/blog/2116787