當我嘗試爲documented在官方網站 我'運行使用GWT-Maven的插件(gwt:run
)託管模式得到一個錯誤:Maven的,GWT和託管模式
The parameters 'runTarget' for goal org.codehaus.mojo:gwt-maven-plugin:2.4.0:run are missing or invalid
如何解決這個問題?
UPDATE:這是我的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>
是的,我把這個配置添加到gwt-plugin''部分,但它沒有幫助。我更新了問題並添加了pom.xml的pice。謝謝 –
MyTitle
@MyTitle你可以發佈整個插件配置? –
當然是。問題已更新 – MyTitle