在 intellij 中使用多个库版本进行调试
我们有一个大型 Maven 项目,并非所有项目都指定各种库的相同版本,很大程度上是因为这些库在一段时间内没有更改。这会导致调试问题,因为 IntelliJ 经常在运行时使用较新的版本时选择较旧的版本。除了修复 poms 之外,我们如何让 IntelliJ 解析到库的正确版本的源。
We have a large maven project and not all of the projects specify the same version of various libraries, largely because these libraries haven't changed in some time. This causes problems with debugging because IntelliJ frequently selects the older version when it's the newer that's being used at runtime. Aside from fixing the poms, how can we get IntelliJ to resolve to the sources for the correct version of the library.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
除了正确配置项目依赖项(在所有模块中使用相同的库版本)之外,没有其他办法可以做到这一点。
There is no way to do it except configuring your project dependencies correctly (to use the same library version in all the modules).