LANGUAGE/!$%!% ERROR NOTE
[Gradle] spring-boot gradle plugin can't be found
forgiveall
2020. 4. 20. 10:49
Gradle
1. Error - 오류
spring-boot gradle plugin can't be found
2. Problem - 문제
The plugin id 'spring-boot' is deprecated. Please use 'org.springframework.boot' instead.
spring-boot
은 deprecated되었다.org.springframework.boot
으로 바꾸자.
3. Solved - 해결
BEFORE
apply plugin: spring-boot
AFTER
apply plugin: org.springframework.boot.gradle.plugin.SpringBootPlugin
or
apply plugin: 'org.springframework.boot'
4. Reference - 참조
spring-boot gradle plugin can't be found: https://stackoverflow.com/questions/26577805/spring-boot-gradle-plugin-cant-be-found