gpt4 book ai didi

java - Eclipse - 如何将一个项目作为 Maven 依赖项添加到另一个项目,而不是作为 jar 添加?

转载 作者:行者123 更新时间:2023-12-02 15:03:12 25 4
gpt4 key购买 nike

我有两个 Maven 项目。一个人应该是另一个人的依赖者。两者都有 pom.xml 文件。当我搜索存储库时,它会看到本地项目并自动添加。

添加时的 pom.xml 条目:

<dependencies>
<dependency> // for another dependency, an external jar
<groupId>..</groupId>
<artifactId>..</artifactId>
<version>...</version>
</dependency>
<dependency> // the one for other project which I want to add as dependency
<groupId>..</groupId>
<artifactId>..</artifactId>
<version>..</version>
</dependency>
</dependencies>

但是对该项目的引用看不到这些类。是否有一些特定的方法可以做到这一点,而不是从存储库添加?

最佳答案

您可以使用 <type> 设置依赖关系类型里面的标签<dependency>标签。

<dependency> 
<groupId>..</groupId>
<artifactId>..</artifactId>
<version>...</version>
<type>jar OR war OR ejb-client OR test-jar</type>
</dependency>

类型的默认值为jar

关于java - Eclipse - 如何将一个项目作为 Maven 依赖项添加到另一个项目,而不是作为 jar 添加?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28873146/

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