将模块依赖添加到 Intellij Maven 模块
我有一个 Maven 模块,然后有另一个名为共享的 Maven 模块,它在所有应用程序之间共享类。将共享maven模块添加到应用程序maven模块中并不利于Intellij识别共享模块中的类。有什么方法可以解决这个问题?
I have a maven module, and then I have another maven module called shared, which has shared classes across all applications. Adding the shared maven module to the application maven module does not facilitate Intellij identifying classes in the shared module. What is a way to fix this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
依赖关系应该在你的pom文件中指定,一旦IDEA导入它们,它应该解析依赖关系并自动设置项目。确保范围设置正确,在您的情况下很可能应该是“编译”。
您在 IDEA 模块设置中手动设置的依赖关系将在下一次 Maven 项目导入时被丢弃。
Dependencies should be specified inside your pom files, once IDEA imports them, it should parse the dependencies and set up the project automatically. Ensure that the scope is set properly, most likely it should be Compile in your case.
Dependencies that you set up manually inside IDEA module settings will be discarded on the next Maven project import.