我有一個單獨的gradle腳本,它只是添加了spring-boot插件。它看起來像這樣:無法找到spring-boot gradle插件
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'spring-boot'已被棄用。請改用'org.springframework.boot'。** ** – acdcjunior 2017-09-06 20:58:27