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'