将模块复制到另一个模块maven多模块

发布于 2025-01-11 10:50:12 字数 793 浏览 0 评论 0原文

我试图在运行应用程序时将子模块复制到另一个模块,而不会出现任何错误,

这是我的结构:

+ -- MyMainProject
     + -- application           
     |     ` -- pom.xml
     + -- domain                
     |     ` -- pom.xml
     + -- bootloader            
     |     `src/main/java
     |     ` -- pom.xml
     + -- infrastructure        <- infrastructure module (has 3 modules)
          + -- infrastructure 1          
          |     `  --  pom.xml
          + -- infrastructure 2          
          |     `  --  pom.xml
          + -- infrastructure 3          <- move this module to application module
          |     `  --  pom.xml
     | -- pom.xml

所以我想做的是将子模块 infrastruction 3 移动到 < code>application 模块,然后我的应用程序模块将把基础设施​​ 3 作为子模块,没有任何错误。 我正在使用intellij,请问有什么建议吗

I'm trying to copy a sub-module to another module without any errors while running the application

here is my structure:

+ -- MyMainProject
     + -- application           
     |     ` -- pom.xml
     + -- domain                
     |     ` -- pom.xml
     + -- bootloader            
     |     `src/main/java
     |     ` -- pom.xml
     + -- infrastructure        <- infrastructure module (has 3 modules)
          + -- infrastructure 1          
          |     `  --  pom.xml
          + -- infrastructure 2          
          |     `  --  pom.xml
          + -- infrastructure 3          <- move this module to application module
          |     `  --  pom.xml
     | -- pom.xml

So what I'm trying to do is to move sub-module infrastructure 3 to application module and then my application module will have infrastructure 3 as a sub-module without any errors.
I'm using intellij, any suggestion please

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

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

发布评论

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

评论(1

桃扇骨 2025-01-18 10:50:12

在你的根 pom.xml 中,你可能有 标签,所以你需要的是将 infrastruction 3 目录复制到与 application 处于同一级别,并将 infrastruction 3 包含到提到的 标记中。

使用 IDEA,您可以使用 F6 移动目录及其内容。更改完成后,只需按 Ctrl+Shift+O 重新导​​入 maven 项目,IDEA 将重构其辅助文件和索引。

In your root pom.xml you probably have <modules/> tag, so what you need is to copy infrastructure 3 directory onto the same level with application and include infrastructure 3 into mentioned <modules/> tag.

With IDEA you can move directory with its contents with F6. After the changes are done simply press Ctrl+Shift+O to reimport maven project, so IDEA will restructure its auxiliary files and indexes.

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