0

我已经明确说明了这个插件的过程资源,即使根据文档这不是必需的: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>
4

1 回答 1

1

至少在您发布的代码中看起来像一个小错误。

应该<phase>process-resources</phase>不是<phase>process-resoures</phase>

于 2013-03-22T03:09:16.303 回答