Mavenプラグインを使用してMavenJavaプロジェクトのソースフォルダーをEclipseに追加しようとしています。
org.codehaus.mojoプラグインを使用しようとすると、次のエラーが発生します
プロジェクトapplication-frameworkでゴールorg.codehaus.mojo:build-helper-maven-plugin:1.7:add-source(default-cli)を実行できませんでした:ゴールorg.codehaus.mojo:build-helperのパラメーター'sources' -maven-plugin:1.7:add-sourceが見つからないか無効です->[ヘルプ1]
http://mojo.codehaus.org/build-helper-maven-plugin/usage.htmlのドキュメントを読んだところ、これは正しいはずですか?上のフォルダtarget/sources/mygeneratedfilesが存在します。
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>add-source</id>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>target/sources/mygeneratedfiles</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>