gpt4 book ai didi

Eclipse 3.7 (indigo SR2) m2e (1.1) import Maven 不会添加生成源的源文件夹

转载 作者:行者123 更新时间:2023-12-04 18:17:25 25 4
gpt4 key购买 nike

我有一个更大的 Maven (3.0.4) 项目,其中包含生成 jaxb、javaws 等代码的模块。

我遇到的问题是,在导入项目后,生成的源路径未添加为 Eclipse 中的源文件夹。目前我需要手动添加文件夹(target/generated-sources/jaxb)以使其在 Eclipse 中工作。

在旧版本的 m2e 中,存在一个配置来控制导入期间运行的阶段。

有人有一个必须改变的想法吗?

更新
我已经测试通过 build-helper-maven-plugin 添加源文件夹

 <plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>target/generated-sources/jaxb/</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>

但这也不能解决问题。

最佳答案

您需要 m2eclipse-buildhelper 插件让 m2e 知道如何添加新的源文件夹。
如果版本来自

Window > Preferences > Maven > Discovery > Open catalog...



无法安装,请尝试使用此 p2 更新站点来安装它:

http://repository.tesla.io:8081/nexus/content/sites/m2e.extras/m2eclipse-buildhelper/0.15.0/N/0.15.0.201207090124/

关于Eclipse 3.7 (indigo SR2) m2e (1.1) import Maven 不会添加生成源的源文件夹,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11409757/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com