Android プロジェクトを Eclipse でビルドするときに問題が発生しています。エラーは次のとおりです。
Build errors for MyAndroidProject; org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal com.jayway.maven.plugins.android.generation2:android-maven-plugin:3.1.1:generate-sources (default-generate-sources) on project MyAndroidProject: The plugin com.jayway.maven.plugins.android.generation2:android-maven-plugin:3.1.1 requires Maven version [3.0.3,)
これは私の Pom.xml プラグインです:
<plugins>
<plugin>
<groupId>com.jayway.maven.plugins.android.generation2</groupId>
<artifactId>android-maven-plugin</artifactId>
<version>3.1.1</version>
<extensions>true</extensions>
</plugin>
</plugins>
ポイントは、ローカル環境とEclipseでmaven 3.0.3を使用していることです。
Apache Maven 3.0.3 (r1075438; 2011-02-28 18:31:09+0100)
このエラーの原因と解決方法はありますか?
よろしくお願いします;)
ルベン