spring
gradle 개념 정리
spring-boot 의존성을 위한 build.gradle 파일 내의 기본적인 용어에 대해 정리한다. 플러그인 의존성 관리를 위한 설정 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 buildscript { ext { springBootVersion = '2.5.2' } repositories { mavenCentral() } dependencies { classpath("org.springframework.boot: spring-boot-gradle-plugin:${springBootVersion}") } } plugins { id 'java' } apply..