当 jar 添加到项目时,Eclipse 是否会对 jar 进行二进制兼容性检查?
当我赞扬 Maven 的依赖管理时,一位 Eclipse 用户告诉我(一位 IntelliJ 用户),他们不需要这样的东西,因为每当他们向项目中添加一个 jar 时,Eclipse 都会测试它与项目中其他 jar 的二进制兼容性。项目。
这是真的吗?这是 Eclipse 本身还是一个插件?
IntelliJ/Netbeans 中是否有类似的功能?
谢谢。
While I was singing the praises of Maven's dependency management, an Eclipse user told me (an IntelliJ user) they don't need stuff like that because any time they add a jar to a project Eclipse will test it's binary compatibility against other jars in the project.
Is this true? Is this Eclipse itself or a plugin?
Is there similar functionality available in IntelliJ/Netbeans?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我在 Eclipse 和 Maven 中都不知道这样的事情(你需要类似 maven-clirr-plugin 来做一些接近的事情)。
I'm not aware of such a thing in neither Eclipse nor in Maven (you'd need something like the maven-clirr-plugin to do something approaching).
我刚刚执行了以下操作:
java.lang.NoClassDefFoundError
。这告诉我依赖性检查并不(总是)发生。
I just did the following:
System.out.println(com.library.AClass.class);
java.lang.NoClassDefFoundError
when the class is loaded.This tells me dependency checks don't (always) happen.