pom 压缩css与js

来源:互联网 发布:淘宝卖的aj哪里来的 编辑:程序博客网 时间:2024/05/18 00:52

pom 压缩css与js maven pom配置



<plugin>                <!-- YUI Compressor Maven压缩插件 -->                <groupId>net.alchim31.maven</groupId>                <artifactId>yuicompressor-maven-plugin</artifactId>                <version>1.3.0</version>                <executions>                    <execution>                        <phase>prepare-package</phase>                        <goals>                            <goal>compress</goal>                        </goals>                    </execution>                </executions>                <configuration>                    <skip>${dui.devMode}</skip>                    <encoding>UTF-8</encoding>                    <jswarn>false</jswarn>                    <force>false</force>                    <suffix>${dui.suffix}</suffix>                     <excludes>                        <exclude>**/*.min.js</exclude>                        <exclude>**/*.min.css</exclude>                    </excludes>                </configuration>            </plugin>            <plugin>                <groupId>org.apache.maven.plugins</groupId>                <artifactId>maven-war-plugin</artifactId>                <version>2.4</version>                    <configuration>                        <warSourceExcludes>**/*.js,**/*.css</warSourceExcludes>                    </configuration>            </plugin>


0 0
原创粉丝点击