公式サイトに記載されているように、gwt-maven-plugin(gwt:run
)を使用してホストモードを実行しようとすると、エラーが発生します。
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>