yuicompressor maven plugin and maven-war-plugin

前端 未结 7 1364
走了就别回头了
走了就别回头了 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

    0 讨论(0)
提交回复
热议问题