当我尝试使用官方网站上记录gwt:run
的 gwt-maven-plugin ( )运行托管模式时,出现错误:
The parameters 'runTarget' for goal org.codehaus.mojo:gwt-maven-plugin:2.4.0:run are missing or invalid
如何解决这个问题呢?
更新:这是在我的 POM 中:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<version>${gwt.version}</version>
<executions>
<execution>
<configuration>
<module>ff.ff.dd.Archiving</module>
<runTarget>Archiving.html</runTarget>
<draftCompile>true</draftCompile>
</configuration>
<goals>
<goal>compile</goal>
</goals>
</execution>
</executions>
</plugin>