Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在一个 Maven 项目中开发一个 Web 应用程序。我还有第二个项目(没有 web),其中包含我的 web maven 项目需要的一些类。所以,我需要在我的第二个项目的 pom.xml 文件中添加一个依赖项,但我不知道该怎么做。
谢谢
简单的解决方案是使用依赖项
<dependencies> <dependency> <groupId>x.y.z</groupId> <artifactId>project-X</artifactId> <version>X.z.Z</version> </dependency> </dependencies>