我在执行cradle testClasses报错,完整命令行如下
xiaokun@xxiaokundeMacBook-Pro spring-boot % gradle testClasses
Starting a Gradle Daemon (subsequent builds will be faster)
FAILURE: Build failed with an exception.
Where:
Settings file ‘/Users/xiaokun/Documents/workfactory/spring-boot/settings.gradle’ line: 26
What went wrong:
Plugin [id: ‘io.spring.gradle-enterprise-conventions’, version: ‘0.0.3’] was not found in any of the following sources:
Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
Get more help at https://help.gradle.org
BUILD FAILED in 30s
gradle我用的不多,看报错指向的是setting.gradle中的下面这一段id “io.spring.gradle-enterprise-conventions” version “0.0.3”,还请老师确认下是什么原因怎么解决这个问题
plugins {
id “com.gradle.enterprise” version "3.3.3"
id “io.spring.gradle-enterprise-conventions” version “0.0.3”
}