springboot 설정1 [SpringBoot] build.gradle 설정 Springboot에서 build.gradle의 기본 설정에 대해 알아볼게요 😄 우선 제일 먼저 들어갈 설정은 아래와 같습니다. buildscript { // ext : build.gradle 에서 사용하는 전역변수를 설정하겠다는 의미 ext { springBootVersion = '2.1.9.RELEASE' } repositories { mavenCentral() jcenter() } dependencies { // 스프링부트 그레이들 플러그인의 2.1.9.RELEASE를 의존성으로 받겠다는 뜻 classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}") } } buildscript는 project의 플러그인 의.. 2020. 9. 18. 이전 1 다음