为了账号安全,请及时绑定邮箱和手机立即绑定

Maven Dependency Plugin 离线未下载某些插件

Maven Dependency Plugin 离线未下载某些插件

忽然笑 2022-11-02 10:27:24
我正在尝试将 pom 文件的所有传递依赖项和插件下载到本地文件夹中,然后使用它离线运行 sonarqube。我对 Maven 相当陌生,所以我可能在这里做错了,但我认为 maven maven-dependency-plugin:3.1.1:go-offline 没有下载运行 sonarqube 所需的所有插件,这会导致错误。这是我尝试过的。将所有依赖项下载到新文件夹mvn -D"maven.repo.local"="c:\test\test" org.apache.maven.plugins:maven-dependency-plugin:3.1.1:go-offline运行声纳mvn -o -D"maven.repo.local"="c:\test\test" sonar:sonar然而,这给了我以下错误[INFO] Scanning for projects...[WARNING] The POM for org.apache.maven.plugins:maven-antrun-plugin:jar:1.3 is missing, no dependency information available[WARNING] Failed to retrieve plugin descriptor for org.apache.maven.plugins:maven-antrun-plugin:1.3: Plugin org.apache.maven.plugins:maven-antrun-plugin:1.3 or one of its dependencies could not be resolved: Cannot access central (https://repo.maven.apache.org/maven2) in offline mode and the artifact org.apache.maven.plugins:maven-antrun-plugin:jar:1.3 has not been downloaded from it before.[WARNING] The POM for org.apache.maven.plugins:maven-assembly-plugin:jar:2.2-beta-5 is missing, no dependency information available[WARNING] Failed to retrieve plugin descriptor for org.apache.maven.plugins:maven-assembly-plugin:2.2-beta-5: Plugin org.apache.maven.plugins:maven-assembly-plugin:2.2-beta-5 or one of its dependencies could not be resolved: Cannot access central (https://repo.maven.apache.org/maven2) in offline mode and the artifact org.apache.maven.plugins:maven-assembly-plugin:jar:2.2-beta-5 has not been downloaded from it before.[WARNING] The POM for org.apache.maven.plugins:maven-dependency-plugin:jar:2.8 is missing, no dependency information available
查看完整描述

1 回答

?
慕的地10843

TA贡献1785条经验 获得超8个赞

sonar-maven-plugin应该声明为插件而不是依赖项。


<build>

  <pluginManagement>

    <plugins>

      <plugin>

        <groupId>org.sonarsource.scanner.maven</groupId>

        <artifactId>sonar-maven-plugin</artifactId>

        <version>3.6.0.1398</version>

      </plugin>

    </plugins>

  </pluginManagement>

</build>


查看完整回答
反对 回复 2022-11-02
  • 1 回答
  • 0 关注
  • 758 浏览

添加回答

举报

0/150
提交
取消
微信客服

购课补贴
联系客服咨询优惠详情

帮助反馈 APP下载

慕课网APP
您的移动学习伙伴

公众号

扫描二维码
关注慕课网微信公众号