使用gradle构建flink项目报错:Unable to find method ‘org.gradle.api

一、前提介绍

本地gradle版本:7.1.1
操作过程:
当我构建flink官网上的项目时(下图项目),通过git在本地打开,并使用gradle进行下载依赖包时,报错如下:具体可能是org.gradle.api.artifacts.result.后面的组件不一样,但是其他报错信息应该大致都是如此。

Unable to find method 'org.gradle.api.artifacts.result.ComponentSelectionReason.getDescription()Ljava/lang/String;'. Possible causes for this unexpected error include: Gradle's dependency cache may be corrupt (this sometimes occurs after a network connection timeout.) Re-download dependencies and sync project (requires network)

The state of a Gradle build process (daemon) may be corrupt. Stopping all Gradle daemons may solve this problem. Stop Gradle build processes (requires restart)

Your project may be using a third-party plugin which is not compatible with the other plugins in the project or the version of Gradle requested by the project.

In the case of corrupt Gradle processes, you can also try closing the IDE and then killing all Java processes.

在这里插入图片描述

二、解决方案

通过百度和stackover已解决,因为我本地使用的idea版本是2018的,2018版本会有这个报错,而我升级到2021版本的idea再导入就没有问题了。大家也可以试试。
下载地址: idea2021

三、解决流程

在这里插入图片描述
比较容易看懂,简单而言就是升级idea到2021即可。

四、与人方便与己方便

猜你喜欢

转载自blog.csdn.net/weixin_41998764/article/details/120302892
今日推荐