无法在Eclipse中导入Maven依赖?尝试了一切。

huangapple go评论75阅读模式
英文:

Not able to import maven dependencies in eclipse ? Tried everything

问题

我正在使用Apache Maven 3.6.3(而不是Eclipse中的嵌入式版本)。
我已经尝试过使用嵌入式Maven,但仍然遇到相同的错误。

此外,我已经删除了整个m2存储库,并且重新导入了整个项目,但是Maven依赖仍然没有安装好。

无法在Eclipse中导入Maven依赖?尝试了一切。

Maven依赖项

无法在Eclipse中导入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.

无法在Eclipse中导入Maven依赖?尝试了一切。

Maven dependencies

无法在Eclipse中导入Maven依赖?尝试了一切。

答案1

得分: 1

  1. 删除位于 C:/Users/????/.m2/repository 的存储库。
  2. 检查位于 C:/Users/????/.m2/settings.xml 中的 代理配置 是否正确。
  3. 将您的 M2_HOME 环境变量设置为 <MAVEN INSTALL DIR。
  4. 在 PATH 变量中添加 %M2_HOME%/bin:(假设在 Windows 上,记得在更改环境变量后启动新窗口)。
  5. 从命令行尝试运行 mvn clean install - 先确保这一步能够正常工作。
  6. 然后在 Eclipse 中尝试,您不需要设置代理,它应该调用默认的 mvn。
英文:

Assuming windows and as other answer you have a pom.xml:

  1. Delete your repository at C:/Users/????/.m2/repository
  2. Check your C:/Users/????/.m2/settings.xml for correct proxy config
  3. Set you M2_HOME environment variable to <MAVEN INSTALL DIR
  4. Add %M2_HOME%/bin: to your PATH variable assuming windows (remember to start a new window after changing environment variables)
  5. Try a mvn clean install from the command line - GET THIS WORKING FIRST
  6. 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.

huangapple
  • 本文由 发表于 2020年9月30日 16:59:53
  • 转载请务必保留本文链接:https://go.coder-hub.com/64134226.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定