maven插件执行

时间:2011-03-12 21:40:44

标签: maven-2 maven-plugin

如果我没有指定阶段,插件何时会执行?

例如插件

<plugin>
    <groupId>com.vaadin</groupId>
    <artifactId>vaadin-maven-plugin</artifactId>
    <version>1.0.1</version>
    <executions>
      <execution>
        <configuration>
          <!-- if you don't specify any modules, the plugin will find them -->
          <!-- <modules> <module>learning.vaadin.gwt.ColorPickerWidgetSet</module> </modules> -->
        </configuration>
        <goals>
          <goal>update-widgetset</goal>
        </goals>
      </execution>
    </executions>
  </plugin>

1 个答案:

答案 0 :(得分:6)

这取决于插件。如果插件作者在mojo元数据中指定了@phase,那么它将在那里结束。如果没有,它根本不会运行。