gpt4 book ai didi

java - 从单独的项目添加 Maven 依赖项

转载 作者:行者123 更新时间:2023-12-02 05:20:51 38 4
gpt4 key购买 nike

我有一个关于 Maven 多项目构建的问题。有maven项目:

root
|
|---libs
| |
| |---mailing
| | |
| | |---pom.xml
| |
| |---utils
| |---pom.xml
|
|---partner
|
|---admin
|---pom.xml

admin::pom.xml:

<parent>
<groupId>my.com.parent.partner</groupId>
<artifactId>parent</artifactId>
<version>1.2.4</version>
</parent>

<modelVersion>4.0.0</modelVersion>
<artifactId>admin</artifactId>
<name>admin</name>
<packaging>war</packaging>
<!-- dependencies and so on and so forth -->

邮件::pom.xml:

<groupId>my.com.mailing</groupId>
<artifactId>mailing</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<!-- dependencies and so on and so forth -->

如何添加管理表单 mailign 的依赖项?

最佳答案

a只需将其添加为邮件 pom.xml 中的依赖项

<dependencies>
<dependency>
<groupId>my.com.parent.partner</groupId>
<artifactId>admin</artifactId>
</dependency>
</dependencies>

关于java - 从单独的项目添加 Maven 依赖项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26527560/

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