Skip to content

Commit

Permalink
feat: spring-boot-2.7.8 upgrade (#6)
Browse files Browse the repository at this point in the history
spring boot 2.7.8 버전 업데이트
  • Loading branch information
beng9re authored Dec 17, 2023
1 parent e326bd5 commit 0cf6847
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -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"
}

Expand All @@ -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<Test> {
Expand Down

0 comments on commit 0cf6847

Please sign in to comment.