gpt4 book ai didi

maven - 在 Maven 中添加模块依赖

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

我有两个 Maven 项目。其中一个必须依赖于另一个。我使用 IntelliJ,并尝试右键单击 project1 > 打开模块设置,然后在依赖项选项卡中单击 + 符号以添加目录或 jar 依赖项。到目前为止一切顺利,当我尝试从依赖项中导入包时,它会为我自动完成它,但是编译会抛出错误,说没有这样的包。我究竟做错了什么 ?

最佳答案

Maven 中没有项目的概念。

您有一个 Maven 项目 B。您选择了它的 groupId(例如 com.mycompany)、它的 artifactId(例如 B)和它的版本(例如 1.0-SNAPSHOT)。你运行 mvn install在这个项目上。这会生成一个 B-1.0-SNAPSHOT.jar 文件并将其存储在您的本地 Maven 存储库中,其中包含 pom.xml 文件。

现在您想在另一个 Maven 项目 A 中使用 B-1.0-SNAPSHOT.jar。对于 A,B 是一个库,就像您使用的任何其他库(log4J、Spring、Hibernate、Guava 等)一样。所以你在 A 的 pom 中添加一个依赖,就像你对任何其他库所做的那样:

<dependencies>
<dependency>
<groupId>com.mycompany</groupId>
<artifactId>B</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
<!-- other dependencies: log4J, Spring, Hibernate, Guava, whatever -->
</dependencies>

阅读 the awful documentation更多细节。

关于maven - 在 Maven 中添加模块依赖,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19197040/

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