如何在 m2eclipse 中导入备用 pom.xml 文件

发布于 2024-12-07 17:38:55 字数 99 浏览 0 评论 0原文

唯一可能的输入是 m2eclipse 将自动扫描 pom.xml 的目录。如果您想导入替代文件(例如 abc.xml)怎么办?可以做到吗?如何做到?

谢谢您的宝贵时间。

The only possible input is a directory where m2eclipse will automatically scan for pom.xml. What if you want to import an alternative file (say abc.xml)? can it be done and how?

Thank you for your time.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

哽咽笑 2024-12-14 17:38:55

不,这是不可能的。 m2e 依赖于 pom.xml 的存在。在 m2e 中具有不同行为的唯一方法是使用 Maven 配置文件。使用 m2e 时,以下内容将自动激活:

<profile>
  <id>m2e</id>
  <activation>
    <property>
      <name>m2e.version</name>
    </property>
  </activation>
 ...
</profile>

除非您手动使用 m2e 配置文件,否则您的 CLI 版本将不受影响。

No, it's not possible. m2e relies on the presence of a pom.xml. The only way to have a different behaviour in m2e is to use maven profiles. The following will be activated automatically when using m2e :

<profile>
  <id>m2e</id>
  <activation>
    <property>
      <name>m2e.version</name>
    </property>
  </activation>
 ...
</profile>

Your CLI builds will remain unaffected, unless you manually use the m2e profile.

财迷小姐 2024-12-14 17:38:55

Maven 非常依赖于 pom.xml 来保留它的名称;存储库、开发人员和其他工具希望它存在于 Maven 项目中。

Maven is pretty dependent on the pom.xml keeping it's name; repos, developers and other tools expect it to be there for a maven project.

鹿港巷口少年归 2024-12-14 17:38:55

在 Eclipse 导航器视图中,右键单击您的项目,然后单击“新建”->“文件”
单击高级并选中“链接到文件系统中的文件”并指定路径

in the eclipse navigator view, right click on your project and click new->file
click advanced and check off "link to a file in the file system" and specify the path

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文