jdk 1.8 다운로드 / 환경변수 설정
플러그인 의존성 관리
buildscript {
ext { // 전역변수 설정
springBootVersion = '2.4.0.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' // 스프링부트의 의존성 관리
repositories { // 의존성을 어떤 원격저장소에서 받을지
mavenCentral()
jcenter()
}
dependencies { // 프로젝트 개발에 필요한 의존성 선언
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
implementation('org.springframework.boot:spring-boot-starter-web')
testImplementation('org.springframework.boot:spring-boot-starter-test')
}