我对gradle项目有一个问题
我的build.gradle
buildscript {
ext {
springBootVersion = '2.1.8.RELEASE'
}
repositories {
mavenCentral()
}
dependencies {
classpath(
"org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}
plugins {
id 'org.springframework.boot' version '2.1.8.RELEASE'
}
apply plugin: 'org.springframework.boot'
group = 'com.demo'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-web'
runtimeOnly 'mysql:mysql-connector-java'
providedRuntime 'org.springframework.boot:spring-boot-starter-tomcat'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.springframework.security:spring-security-test'
}当我尝试运行build.gralde时,我得到了错误
Plugin [id: 'org.springframework.boot', version: '2.1.8.RELEASE'] was not found in any of the following sources:IDEA中的Gradle首选项

我不明白,有什么问题,我用Spring Initializer生成了项目
发布于 2019-10-01 23:05:24
我想,我有问题了。你只需要关闭“离线模式”,它就会从repo下载。

它在Intellij想法的右边
发布于 2019-10-02 19:45:33
一种可能的解释是,通过显式配置buildscript.repositories,您不再拥有默认的gradlePluginPortal()。例如,并非所有插件在Maven Central上都可用。
https://stackoverflow.com/questions/58187106
复制相似问题