找不到spring-boot gradle插件
我有一个单独的gradle脚本,只是添加了spring-boot插件。看起来像这样:
buildscript { repositories {
mavenLocal()
mavenCentral()
maven { url 'http://repo.spring.io/libs-release' }
}
dependencies {
classpath 'org.springframework.boot:spring-boot-gradle-plugin:1.1.8.RELEASE'
}
}
apply plugin: 'spring-boot'
然后,在另一个项目中,像这样引用它:
apply from: '../../food-orders-online-main/spring-boot.gradle'
当我运行构建任务时,出现以下错误:
A problem occurred evaluating script.> Failed to apply plugin [id 'spring-boot']
> Plugin with id 'spring-boot' not found.
有人知道我在做什么错吗?
回答:
脚本插件不支持按插件ID应用插件。您必须使用插件的完全限定的类名。
apply plugin: org.springframework.boot.gradle.plugin.SpringBootPlugin
有关更多信息,请参见此线程。
更新插件类名称。
以上是 找不到spring-boot gradle插件 的全部内容, 来源链接: utcz.com/qa/432713.html