From a66c7b87f8d698da55ea2b97ec6aa3870a1a50e2 Mon Sep 17 00:00:00 2001 From: Rinjae Date: Thu, 25 Sep 2025 17:35:17 +0900 Subject: [PATCH] =?UTF-8?q?safedb=20=EB=94=94=EB=B2=84=EA=B9=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build.gradle | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 0e60404..8f61ef6 100644 --- a/build.gradle +++ b/build.gradle @@ -102,7 +102,8 @@ dependencies { api "org.springframework:spring-web:${springVersion}" api group: 'commons-io', name: 'commons-io', version: '2.11.0' - testRuntimeOnly 'com.h2database:h2:2.1.214' + + testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1' testImplementation 'ch.qos.logback:logback-classic:1.2.10' testImplementation 'ch.qos.logback:logback-access:1.2.10' @@ -111,6 +112,9 @@ dependencies { testImplementation 'org.slf4j:jcl-over-slf4j:1.7.35' testImplementation 'org.slf4j:log4j-over-slf4j:1.7.35' testImplementation 'org.slf4j:slf4j-api:1.7.35' + testAnnotationProcessor "org.projectlombok:lombok:1.18.28" + + testRuntimeOnly 'com.h2database:h2:2.1.214' testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1' testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.8.2'