51Testing软件测试论坛

标题: maven需要的jar包在中央仓库中找不到 [打印本页]

作者: 测试积点老人    时间: 2019-7-10 13:46
标题: maven需要的jar包在中央仓库中找不到
用maven搭配sonar进行代码检查,在pom中配置好了需要的插件和版本号之后,运行,进入.m2/repository中查看,能够看到相应的插件目录已经下载了这个jar包,但是还是会到网上连接maven的中央仓库,而且提示无法找到相关的插件包,上maven的中央仓库中查看,是有这个插件的,相应的版本也有。
   打印的异常信息和电脑中相关的插件如下所示:
我需要的一个插件是maven-compiler-plugin,groupId=org.apache.maven.plugins,artifactId=maven-compiler-plugin,version=2.3.2
pom文件里面书写如下:
  1. <plugins>
  2.            <plugin>
  3.               <groupId>org.apache.maven.plugins</groupId>
  4.               <artifactId>maven-compiler-plugin</artifactId>
  5.               <version>2.3.2</version>
  6.               dependencies>
  7.                   <dependency>
  8.                      <groupId>org.codehaus.plexus</groupId>
  9.                      <artifactId>plexus-complier-javac</artifactId>
  10.                      <version>1.8.1</version>
  11.                   </dependency>
  12.               </dependencies>
复制代码
而且我的本地仓库中有这个插件,如下:
  1. :~/.m2/repository/org/apache/maven/plugins$ ls
  2. maven-android-plugin          maven-metadata-central.xml.sha1
  3. maven-archetype-plugin      maven-mojo-plugin
  4. maven-assembly-plugin       maven-plugins
  5. maven-checkstyle-plugin     maven-pmd-plugin
  6. maven-clean-plugin              maven-project-info-reports-plugin
  7. maven-compiler-plugin        maven-resources-plugin
  8. maven-install-plugin             maven-site-plugin
  9. maven-jar-plugin                   maven-surefire-plugin
  10. maven-metadata-central.xml

  11. :~/.m2/repository/org/apache/maven/plugins$ cd maven-compiler-plugin/
  12. :~/.m2/repository/org/apache/maven/plugins/maven-compiler-plugin$ ls
  13. 2.0.2  2.3.1  2.3.2  maven-metadata-local.xml
  14. :~/.m2/repository/org/apache/maven/plugins/maven-compiler-plugin$ cd 2.3.2
  15. :~/.m2/repository/org/apache/maven/plugins/maven-compiler-plugin/2.3.2$ ls
  16. maven-compiler-plugin-2.3.2.jar  maven-compiler-plugin-2.3.2.jar.sha1  maven-compiler-plugin-2.3.2.pom  maven-compiler-plugin-2.3.2.pom.sha1
复制代码
另一个插件plexus-compiler-javac也有,版本号是1.8.1,
  1. groupId=org.codehaus.plexus  artifacId=plexus-compiler-javac
  2. plexus                                           plexus-compiler-api           plexus-complier-javac        
  3. plexus-container-default           plexus-interactivity             plexus-resources            plexus-archiver                    plexus-compiler-javac               plexus-component-annotations  plexus-containers                 
  4. plexus-interactivity-api             plexus-utils       plexus-classworlds                         plexus-compiler-manager  plexus-component-api              plexus-digest            
  5. plexus-interpolation                   plexus-velocity                  plexus-compiler     plexus-compilers      
  6. plexus-components                   plexus-i18n               plexus-io
  7. :~/.m2/repository/org/codehaus/plexus$ cd plexus-compiler-javac
  8. :~/.m2/repository/org/codehaus/plexus/plexus-compiler-javac$ ls
  9. 1.5.3  1.8  1.8.1  maven-metadata-local.xml
  10. :~/.m2/repository/org/codehaus/plexus/plexus-compiler-javac$ cd 1.8.1
  11. :~/.m2/repository/org/codehaus/plexus/plexus-compiler-javac/1.8.1$ ls
  12. plexus-compiler-javac-1.8.1.jar  plexus-compiler-javac-1.8.1.jar.sha1  plexus-compiler-javac-1.8.1.pom  plexus-compiler-javac-1.8.1.pom.sha1
复制代码
运行mvn clean install sonar:sonar的时候就会出错,部分错误信息如下:
  1. [INFO] skip non existing resourceDirectory /home/kes/froyo/src/main/resources
  2. Downloading: http://repo1.maven.org/maven2/org/codehaus/plexus/plexus-complier-javac/1.8.1/plexus-complier-javac-1.8.1.pom
  3. [INFO] Unable to find resource 'org.codehaus.plexus:plexus-complier-javac:pom:1.8.1' in repository central (http://repo1.maven.org/maven2)
  4. Downloading: http://repo1.maven.org/maven2/org/codehaus/plexus/plexus-complier-javac/1.8.1/plexus-complier-javac-1.8.1.pom
  5. [INFO] Unable to find resource 'org.codehaus.plexus:plexus-complier-javac:pom:1.8.1' in repository central (http://repo1.maven.org/maven2)
  6. Downloading: http://repo1.maven.org/maven2/org/codehaus/plexus/plexus-complier-javac/1.8.1/plexus-complier-javac-1.8.1.jar
  7. [INFO] Unable to find resource 'org.codehaus.plexus:plexus-complier-javac:jar:1.8.1' in repository central (http://repo1.maven.org/maven2)
  8. Downloading: http://repo1.maven.org/maven2/org/codehaus/plexus/plexus-complier-javac/1.8.1/plexus-complier-javac-1.8.1.jar
  9. [INFO] Unable to find resource 'org.codehaus.plexus:plexus-complier-javac:jar:1.8.1' in repository central (http://repo1.maven.org/maven2)
  10. [INFO] ------------------------------------------------------------------------
  11. [ERROR] BUILD ERROR
  12. [INFO] ------------------------------------------------------------------------
  13. [INFO] Failed to resolve artifact.

  14. Missing:
  15. ----------
  16. 1) org.codehaus.plexus:plexus-complier-javac:jar:1.8.1

  17.   Try downloading the file manually from the project website.

  18.   Then, install it using the command:
  19.       mvn install:install-file -DgroupId=org.codehaus.plexus -DartifactId=plexus-complier-javac -Dversion=1.8.1 -Dpackaging=jar -Dfile=/path/to/file

  20.   Alternatively, if you host your own repository you can deploy the file there:
  21.       mvn deploy:deploy-file -DgroupId=org.codehaus.plexus -DartifactId=plexus-complier-javac -Dversion=1.8.1 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]

  22.   Path to dependency:
  23.           1) org.apache.maven.plugins:maven-compiler-plugin:maven-plugin:2.3.2
  24.           2) org.codehaus.plexus:plexus-complier-javac:jar:1.8.1

  25. ----------
  26. 1 required artifact is missing.

  27. for artifact:
  28.   org.apache.maven.plugins:maven-compiler-plugin:maven-plugin:2.3.2

  29. from the specified remote repositories:
  30.   central (http://repo1.maven.org/maven2),
  31.   apache.snapshots (http://repository.apache.org/snapshots)
复制代码
错误信息大体是说不能从中央仓库中找到那两个插件,但是我的repository上是有的,而且maven的中央仓库网站上也有这个,请众兄弟看看是哪里出了问题。

作者: applepen    时间: 2020-9-9 23:17
擦,我也遇到类似的问题了。先留个标记。
等找解决办法了,再来回帖。
作者: applepen    时间: 2020-10-2 07:00
Setting.xml 里配置仓库镜像地址配这个<url>https://repo1.maven.org/maven2</url>
只要保证网络能访问就没问题。
最好清空本地仓库,让所有包都重新下载。




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2