자주 쓰이는 dependency 모음집

kdkdhoho·2022년 6월 29일
0

Spring

목록 보기
18/26

dependencies {
	implementation 'org.springframework.boot:spring-boot-starter-web'
	developmentOnly 'org.springframework.boot:spring-boot-devtools'
	testImplementation 'org.springframework.boot:spring-boot-starter-test'

	// h2
	runtimeOnly 'com.h2database:h2'

	// jpa
	implementation 'org.springframework.boot:spring-boot-starter-data-jpa'

	// thymeleaf
	implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'

	// Lombok
	compileOnly 'org.projectlombok:lombok'
	annotationProcessor 'org.projectlombok:lombok'
    
    // JUnit4
    testImplementation("org.junit.vintage:junit-vintage-engine") {
     exclude group: "org.hamcrest", module: "hamcrest-core"
    }
}

기타 다른 dependency는 계속해서 추가 할 예정

profile
newBlog == https://kdkdhoho.github.io

0개의 댓글