ホームページ  >  に質問  >  本文

java - maven无法下载依赖怎么办

pom.xml 右键 maven install 后,直接就BUILD SUCCESS了,一个依赖都没有下载,可能是maven主库被墙的缘故,然后在maven/conf/setting.xml里配置镜像如下:

<mirrors>
     <mirror>  
      <id>CN</id>  
      <name>OSChina Central</name>                                                                                                                         
      <url>http://maven.oschina.net/content/groups/public/</url>  
      <mirrorOf>central</mirrorOf>
    </mirror>  
</mirrors>
<profiles>
    <profile>
      <id>jdk-1.8</id>
      <activation>
      <jdk>1.8</jdk>
      </activation>
      <repositories>
        <repository>
          <id>nexus</id>
          <name>local private nexus</name>
          <url>http://maven.oschina.net/content/groups/public/</url>
          <releases>
            <enabled>true</enabled>
          </releases>
          <snapshots>
            <enabled>false</enabled>
          </snapshots>
        </repository>
      </repositories>
      <pluginRepositories>
        <pluginRepository>
          <id>nexus</id>
          <name>local private nexus</name>
          <url>http://maven.oschina.net/content/groups/public/</url>
          <releases>
            <enabled>true</enabled>
          </releases>
          <snapshots>
            <enabled>false</enabled>
          </snapshots>
        </pluginRepository>
      </pluginRepositories>
</profile>

结果还是无法下载依赖,这究竟怎么回事?

PHPzPHPz2764日前386

全員に返信(1)返信します

  • 阿神

    阿神2017-04-17 17:55:50

    オスキナミラーが閉まっていませんか?探しに行きますか?
    http://maven.oschina.net/

    以下は一般的に使用される Maven ライブラリの一部です

    リーリー

    返事
    0
  • キャンセル返事