스프링부트와 AWS 혼자 구현하는 웹 서비스
Spring03 :: Spring boot에 필요한 설정
Spring03 :: Spring boot에 필요한 설정
2020.09.07buildscript { ext { springBootVersion = '2.1.9.RELEASE' } repositories { mavenCentral() jcenter() } dependencies { classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}") } } apply plugin: 'java' apply plugin: 'eclipse' apply plugin: 'org.springframework.boot' apply plugin: 'io.spring.dependency-management' group 'com.jojoldu.book' version '1.0-SNAPSHOT' sourceCompat..