我正在尝试使用 maven 插件将 maven java 项目的源文件夹添加到 Eclipse。
尝试使用 org.codehaus.mojo 插件时,我收到以下错误
无法在项目应用程序框架上执行目标 org.codehaus.mojo:build-helper-maven-plugin:1.7:add-source (default-cli):目标 org.codehaus.mojo:build-helper 的参数“源” -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>