看看 Maven 在 Eclipse 中的霸主地位的最短方法是什么?

发布于 2024-12-29 06:51:53 字数 109 浏览 0 评论 0原文

假设我在 Eclipse 中创建了一个空的 Maven 项目。观察Maven自动jar下载和依赖检查能力的最短方法是什么?例如,我需要使用 Swing 或 log4j 库。如何添加它们而不考虑在哪里下载?

Suppose I have created an empty Maven project in Eclipse. What is the shortest way to observe Maven's ability of automatic jar downloading and dependency checking? For example, I need to use Swing or log4j library. How can I add them without thinking where to download?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

那片花海 2025-01-05 06:51:53

添加依赖项,例如 Log4J 1.2.16;它将自动下载及其依赖项。然后检查主目录的 .m2/repository 目录。

(您会发现mvnrepository.com很有帮助;将其添加为书签!)

Add a dependency, for example, Log4J 1.2.16; it will be downloaded automatically, along with its dependencies. Then check in your home directory's .m2/repository directory.

(You'll find mvnrepository.com helpful; bookmark it!)

暮倦 2025-01-05 06:51:53

将其添加到 pom 的末尾:

    <repository>
        <id>jboss-nexus</id>
        <url>https://repository.jboss.org/nexus/</url>
    </repository>

然后转到 位置并查找工件你需要。一旦您找到它们,请将它们添加到您的项目依赖项中(该站点甚至显示完整的依赖项)。
运行 mvn install 然后 mvn eclipse:eclipse 瞧,一切都完成了......

Add this at the end of your pom :

    <repository>
        <id>jboss-nexus</id>
        <url>https://repository.jboss.org/nexus/</url>
    </repository>

Then go to this location and look for the artifacts you need. Once you've found them add them to your project dependencies (the site even shows the complete dependency).
Run mvn install and then mvn eclipse:eclipse and voila, all done...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文