yuicompressor maven plugin and maven-war-plugin

前端 未结 7 1394
走了就别回头了
走了就别回头了 2020-12-24 03:34

I\'ve been struggling with getting this plugin to play nicely with the maven-war-plugin for a couple of hours now and I thought it was time to ask for help. I have the plugi

7条回答
  •  感情败类
    2020-12-24 04:09

    Without pom.xml change

    mvn net.alchim31.maven:yuicompressor-maven-plugin:compress
    

    To force compress every js and css files and fail if warning

    mvn net.alchim31.maven:yuicompressor-maven-plugin:compress \
    -Dmaven.yuicompressor.force=true \
    -Dmaven.yuicompressor.failOnWarning=true \
    

    For more options: http://davidb.github.io/yuicompressor-maven-plugin/usage_compress.html

提交回复
热议问题