From 2025653c04476ea0d1ec7abb0a2179bec9d4f0d1 Mon Sep 17 00:00:00 2001 From: sanghee0820 Date: Thu, 19 Sep 2024 19:28:39 +0900 Subject: [PATCH] =?UTF-8?q?build:=20DB=20=EA=B4=80=EB=A0=A8=20=EA=B8=B0?= =?UTF-8?q?=EB=B3=B8=20Dependency=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build.gradle | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build.gradle b/build.gradle index dc5bc286..7ee55b06 100644 --- a/build.gradle +++ b/build.gradle @@ -25,9 +25,14 @@ repositories { dependencies { implementation 'org.springframework.boot:spring-boot-starter-web' + implementation 'org.springframework.boot:spring-boot-starter-data-jpa' compileOnly 'org.projectlombok:lombok' annotationProcessor 'org.projectlombok:lombok' + + testImplementation 'org.springframework.boot:spring-boot-starter-test' + runtimeOnly 'com.mysql:mysql-connector-j' + runtimeOnly 'com.h2database:h2' testRuntimeOnly 'org.junit.platform:junit-platform-launcher' }