欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

intellij出现dependency ‘xxx‘not found

程序员文章站 2024-02-02 23:10:04
...

如下,首先依赖是从mvnrepository.com中下载的
intellij出现dependency ‘xxx‘not found

然后也$MAVEN/conf/settings.xml配置了mvnrepository.com
但是就是报告dependency not found.
这是怎么回事呢?

原因是我在用http访问的时候碰到这么个提示.
intellij出现dependency ‘xxx‘not found

所以思来想去,最终解决办法,把settings.xml中的mirror修改如下.

解决方案1:
http://repo1.maven.org/maven2/
改成
https://repo1.maven.org/maven2/

解决方案2
https://maven.aliyun.com/mvn/search中
搜索发现国内阿里的库没有镜像1.11.2的版本
所以在pom.xml中把原来的:

        <dependency>
        <groupId>org.apache.flink</groupId>
            <artifactId>flink-table_2.11</artifactId>
            <version>1.11.2</version>
        </dependency>

降低版本为:

<dependency>
            <groupId>org.apache.flink</groupId>
            <artifactId>flink-table_2.11</artifactId>
            <version>1.7.2</version>
        </dependency>

即可

相关标签: Intellij