Dependency 'cn.hutool:hutool-all:5.7.3' not found

我在pom.xml引入的时候,id和版本都爆红,然后提示Dependency 'cn.hutool:hutool-all:5.7.3' not found ,请问是什么原因呀?


            cn.hutool
            hutool-all
            5.7.3
        

你本地maven仓库 无法从远端中央仓库获取 依赖吧, 我试了下可以下载依赖的,你用我这个仓库镜像试试吧

<mirrors>

    <mirror>
      <id>repo1</id>
      <mirrorOf>central</mirrorOf>
      <name>Human Readable Name 1</name>
      <url>https://repo1.maven.org/maven2/</url>
    </mirror>
    
    <mirror>
      <id>repo2</id>
      <mirrorOf>central</mirrorOf>
      <name>Human Readable Name 2</name>
      <url>https://repo2.maven.org/maven2/</url>
    </mirror>

    <mirror>
        <id>alimaven</id>
        <name>aliyun maven</name>
        <url>https://maven.aliyun.com/nexus/content/groups/public/</url>
        <mirrorOf>central</mirrorOf>
    </mirror>

  </mirrors>