如果我没有指定阶段,插件何时会执行?
例如插件
<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>
答案 0 :(得分:6)
这取决于插件。如果插件作者在mojo元数据中指定了@phase
,那么它将在那里结束。如果没有,它根本不会运行。