2

mvn archetype:generate -DarchetypeGroupId = org.codehaus.mojo -DarchetypeArtifactId = gwt-maven-plugin -DarchetypeVersion=2.5.0を使用してGWTプロジェクトを作成しました

プロジェクトをEclipsejunoにインポートしました。

私が得る最初のエラーはこれです:ライフサイクル構成でカバーされていないプラグインの実行:org.codehaus.mojo:gwt-maven-plugin:2.5.0:i18n(実行:デフォルト、フェーズ:generate-sources)

pomファイル内。

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<version>2.5.0</version>
<executions>
  <execution>
    <goals>
      <goal>compile</goal>
      <goal>test</goal>
      <goal>i18n</goal>
      <goal>generateAsync</goal>
    </goals>
  </execution>
</executions>
<!-- Plugin configuration. There are many available options, see 
  gwt-maven-plugin documentation at codehaus.org -->
<configuration>
  <runTarget>dashboard.html</runTarget>
  <hostedWebapp>${webappDirectory}</hostedWebapp>
  <i18nMessagesBundle>com.farheap.jsi.dashboard.client.Messages</i18nMessagesBundle>
</configuration>

また、コードには、見つからないGreetingServiceAsyncが含まれています。

private final GreetingServiceAsync greetingService = GWT.create(GreetingService.class);
4

1 に答える 1