英文:
Why can't IntelliJ resolve the pom.xml file?
问题
使用Maven构建一个Java Spring应用程序。然而,整个pom.xml文件中的依赖关系和类似的每个关键词都显示“无法解析的符号”错误:
英文:
Building a Java Spring application, using Maven. However, the entire pom.xml file for dependencies and such had every single keyword give the error "Cannot resolve symbol":
答案1
得分: 4
看起来您已将此pom.xml
添加为Ant构建文件。
相反,您应将其作为Maven项目文件添加到IDE中。您可以通过从Maven工具窗口中的“添加”选项将其添加进来:
-
打开Maven工具窗口。
-
在Maven工具窗口中,点击
+
图标以附加一个Maven项目。 -
在打开的对话框中,选择所需的
pom.xml
文件,然后点击确定。
英文:
Looks like you have added this pom.xml as an Ant build file.
Instead you should add it as a Maven project file into IDE. You can do so by adding it from Maven tool window:
-
Open the Maven tool window.
-
In the Maven tool window, click the
+
icon to attach a Maven project. -
In the dialog that opens, select the desired
pom.xml
file, and click OK.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论