英文:
Not able to import maven dependencies in eclipse ? Tried everything
问题
我正在使用Apache Maven 3.6.3(而不是Eclipse中的嵌入式版本)。
我已经尝试过使用嵌入式Maven,但仍然遇到相同的错误。
此外,我已经删除了整个m2存储库,并且重新导入了整个项目,但是Maven依赖仍然没有安装好。
Maven依赖项
英文:
I am using apache maven 3.6.3(not the embedded one in eclipse).
I have tried the same with the embedded maven also , still facing the same error.
Also i have deleted the whole m2 repository and again re-import the whole project but still the maven dependencies are not installing.
Maven dependencies
答案1
得分: 1
- 删除位于 C:/Users/????/.m2/repository 的存储库。
- 检查位于 C:/Users/????/.m2/settings.xml 中的 代理配置 是否正确。
- 将您的 M2_HOME 环境变量设置为 <MAVEN INSTALL DIR。
- 在 PATH 变量中添加 %M2_HOME%/bin:(假设在 Windows 上,记得在更改环境变量后启动新窗口)。
- 从命令行尝试运行 mvn clean install - 先确保这一步能够正常工作。
- 然后在 Eclipse 中尝试,您不需要设置代理,它应该调用默认的 mvn。
英文:
Assuming windows and as other answer you have a pom.xml:
- Delete your repository at C:/Users/????/.m2/repository
- Check your C:/Users/????/.m2/settings.xml for correct proxy config
- Set you M2_HOME environment variable to <MAVEN INSTALL DIR
- Add %M2_HOME%/bin: to your PATH variable assuming windows (remember to start a new window after changing environment variables)
- Try a mvn clean install from the command line - GET THIS WORKING FIRST
- Then try from eclipse, you do not need a proxy setting it should call the default mvn.
答案2
得分: 0
如果将您的项目转换为Maven项目,将自动创建pom.xml文件;如果不转换,则:
1- 创建pom.xml文件 - 单击项目目录->新建->文件
2- 从Google搜索中查找Maven依赖,例如:如果您想要下载spring-context.jar,则搜索Maven Spring Context,您将获得groupid和artifactid,将其粘贴到pom.xml文件中,jar包将自动下载。
英文:
If you convert your project to maven project pom.xml will be automatically created,if not
1- Create pom.xml file -by clicking on project directory->new->file
2- search from google maven dependencies for ex: if you want to download spring-context.jar ,then search for maven spring context ,you will get groupid and artifactid paste it in pom.xml file.jars will be automatically downloaded.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论