Maven コマンド ラインから GWT アプリを実行しようとすると、次のエラーが発生します。
目標 org.codehaus.mojo:gwt-maven-plugin:2.4.0:run のパラメーター 'runTarget' が見つからないか無効です。
ただし、これは pom.xml の次の場合です。
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<!-- <version>2.5.0</version> 2.1.0-1 -->
<version>${gwt.version}</version>
<configuration>
<configuration>
<runTarget>com.magick.webtrader/Webtrader.html</runTarget>
<buildOutputDirectory>${project.build.outputDirectory}</buildOutputDirectory>
<generateDirectory>${project.build.directory}/generated-sources/gwt</generateDirectory>
<hostedWebapp>${webappDirectory}</hostedWebapp>
<copyWebApp>true</copyWebApp>
<draftCompile>true</draftCompile>
<webXml>${basedir}/war/WEB-INF/web.xml</webXml>
</configuration>
</configuration>
<executions>
<execution>
<goals>
<goal>compile</goal>
<goal>test</goal>
<goal>generateAsync</goal>
</goals>
</execution>
</executions>
</plugin>
私が間違っているのは何ですか?
ありがとう