From 0cf68474490a4ccbdb8598758e95c3e410c657c4 Mon Sep 17 00:00:00 2001 From: beng9re Date: Sun, 17 Dec 2023 22:21:58 +0900 Subject: [PATCH] feat: spring-boot-2.7.8 upgrade (#6) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit spring boot 2.7.8 버전 업데이트 --- build.gradle.kts | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 096fcb8..28287c7 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,6 +1,6 @@ plugins { java - id("org.springframework.boot") version "2.7.3" + id("org.springframework.boot") version "2.7.8" id("io.spring.dependency-management") version "1.1.4" } @@ -22,20 +22,28 @@ repositories { } dependencies { + //spring implementation("org.springframework.boot:spring-boot-starter-actuator") implementation("org.springframework.boot:spring-boot-starter-data-jpa") implementation("org.springframework.boot:spring-boot-starter-web") + + //flyway implementation("org.flywaydb:flyway-core") implementation("org.flywaydb:flyway-mysql") - compileOnly("org.projectlombok:lombok") - developmentOnly("org.springframework.boot:spring-boot-devtools") + + //swagger + implementation("org.springdoc:springdoc-openapi-ui:1.7.0") + + //h2 runtimeOnly("com.h2database:h2") runtimeOnly("com.mysql:mysql-connector-j") + + //lombok + compileOnly("org.projectlombok:lombok") annotationProcessor("org.projectlombok:lombok") - testImplementation("org.springframework.boot:spring-boot-starter-test") - //swagger - implementation("org.springdoc:springdoc-openapi-ui:1.7.0") + developmentOnly("org.springframework.boot:spring-boot-devtools") + testImplementation("org.springframework.boot:spring-boot-starter-test") } tasks.withType {