[ERROR] Failed to execute goal on project simple-project: Could not resolve dependencies for project

[ERROR] Failed to execute goal on project simple-project: Could not resolve dependencies for project,第1张

[ERROR] Failed to execute goal on project simple-project: Could not resolve dependencies for project

[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  01:01 h
[INFO] Finished at: 2021-12-05T21:19:38+08:00
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal on project simple-project: Could not resolve dependencies for project cn.edu.xmu:simple-project:jar:1.0: Could not transfer artifact org.apache.flink:flink-rpc-akka-loader:jar:1.14.0 from/to maven-default-http-blocker (http://0.0.0.0/): Blocked mirror for repositories: [jboss (http://repository.jboss.com/maven2/, default, releases+snapshots)] -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/DependencyResolutionException

解决的方法

我的flink是flink-1.14.0-bin-scala_2.12.tgz

上述错误基本是pom.xml文件捣乱

所以pom.xml文件中

 

 

version应该对应1.14.0

flink-streaming-java_后面也跟2.12

version应该对应1.14.0

filnk-clients_后面跟2.12

version应该对应1.14.0

改了这三处,基本上可以了

出现的错误基本上是没有对应好版本,改过来保存,然后执行

/usr/local/maven/bin/mvn package

就可以了

以上是我本人的解决方法,各位可以参考一下,祝你们成功

下面是我运行成功的pom.xml文件,对应的flink是flink-1.14.0-bin-scala_2.12.tgz


    cn.edu.xmu
    simple-project
    4.0.0
    Simple Project
    jar
    1.0
   
       
            jboss
            JBoss Repository
            http://repository.jboss.com/maven2/
       

   

   
       
            org.apache.flink
            flink-java
            1.14.0
       

       
            org.apache.flink
            flink-streaming-java_2.12
1.14.0
       

       
            org.apache.flink
            flink-clients_2.12
            1.14.0
       

   

 

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5654672.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存