ドキュメントによるとこれは必要ありませんが、このプラグインのプロセスリソースを明示的に述べました: http://alchim.sourceforge.net/yuicompressor-maven-plugin/usage_compress.html
実行時:
mvn net.alchim31.maven:yuicompressor-maven-plugin:compress
それはうまくいきます。
実行時:
mvn process-resources
このフェーズで使用している exec プラグインは機能しますが、実行されません。
私のpom.xmlの関連部分は次のとおりです。
<plugin>
<groupId>net.alchim31.maven</groupId>
<artifactId>yuicompressor-maven-plugin</artifactId>
<executions>
<execution>
<phase>process-resoures</phase>
<goals>
<goal>compress</goal>
</goals>
</execution>
</executions>