当我尝试目标>>编译 pom.xml 时,我收到以下错误。
调用 maven 目标时遇到内部错误:请检查异常详细信息。
org.apache.maven.artifact.resolver.MultipleArtifactsNotFoundException:缺失:
1) org.apache.httpcomponents:httpcore:jar:4.1.2
尝试从项目网站手动下载文件。
然后,使用以下命令安装它: mvn install:install-file -DgroupId=org.apache.httpcomponents -DartifactId=httpcore -Dversion=4.1.2 -Dpackaging=jar -Dfile=/path/to/file
或者,如果您托管自己的存储库,您可以在那里部署文件: mvn deploy:deploy-file -DgroupId=org.apache.httpcomponents -DartifactId=httpcore -Dversion=4.1.2 -Dpackaging=jar -Dfile=/path/to /file -Durl=[url] -DrepositoryId=[id]
依赖路径:1)org.apache.httpcomponents:httpcore:jar:4.1.2
缺少 1 个必需的工件。
根据上面的错误提示,或者,如果您托管自己的存储库,您可以在那里部署文件。如何为 pom.xml 提供本地存储库。