From af7f726501d1a0ae67919c9d9dd1c9f581c21ef0 Mon Sep 17 00:00:00 2001 From: KingPlatypus Date: Sat, 8 Apr 2023 23:17:36 +0900 Subject: [PATCH] spring introduction final --- build.gradle | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 5e4d6cf..6938e59 100644 --- a/build.gradle +++ b/build.gradle @@ -15,7 +15,12 @@ repositories { dependencies { implementation 'org.springframework.boot:spring-boot-starter-thymeleaf' implementation 'org.springframework.boot:spring-boot-starter-web' - testImplementation 'org.springframework.boot:spring-boot-starter-test' +// implementation 'org.springframework.boot:spring-boot-starter-jdbc' + implementation 'org.springframework.boot:spring-boot-starter-data-jpa' + runtimeOnly 'com.h2database:h2' + testImplementation('org.springframework.boot:spring-boot-starter-test') { + exclude group: 'org.junit.vintage', module: 'junit-vintage-engine' + } } tasks.named('test') {