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 进行依赖管理。我们的团队使用 eclipse 作为 IDE。有没有一种简单的方法可以让 eclipse 在不运行 mvn eclipse:eclipse 的情况下刷新 maven 依赖项?
依赖项在本地 maven 存储库中是最新的,但在我们使用 eclipse:eclipse 命令之前,eclipse 不会获取更改。这会重新生成很多 eclipse 配置文件。
您是否尝试过使用m2eclipse插件?我将它与 eclipse 一起使用,当我添加依赖项时它会维护 eclipse .classpath。它还将检查更新的依赖项。
您可以使用 生成特殊的 eclipse 文件mvn eclipse:eclipse,但是一旦完成,您应该让插件在 eclipse 中处理依赖项。
mvn eclipse:eclipse
这就是我们在我的工作场所的做法,而且通常效果很好。