将模块复制到另一个模块maven多模块
我试图在运行应用程序时将子模块复制到另一个模块,而不会出现任何错误,
这是我的结构:
+ -- 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在你的根
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 copyinfrastructure 3
directory onto the same level withapplication
and includeinfrastructure 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.