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 {