现在的位置: 首页 > 综合 > 正文

js,css压缩打包

2013年07月26日 ⁄ 综合 ⁄ 共 719字 ⁄ 字号 评论关闭
<plugin>
				<groupId>net.alchim31.maven</groupId>
				<artifactId>yuicompressor-maven-plugin</artifactId>
				<version>1.3.0</version>
				<executions>
					<execution>
                        <phase>process-resources</phase>
						<goals>
							<goal>compress</goal>
						</goals>
						<configuration>
							<excludes>
								<exclude>**/*.min.js</exclude>
								<exclude>**/*-min.js</exclude>
							</excludes>
							<encoding>utf8</encoding>
							<failOnWarning>false</failOnWarning>
							<nosuffix>true</nosuffix>
							<force>true</force>
							<removeIncluded>true</removeIncluded>
							<linebreakpos>-1</linebreakpos>
						</configuration>
					</execution>
				</executions>
			</plugin>
			
			<plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-war-plugin</artifactId>
                <configuration>
                    <warSourceExcludes>**/js/**,**/css/**</warSourceExcludes>
                </configuration>
            </plugin>

抱歉!评论已关闭.