Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions services/inventory-service/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@ plugins {
// @get:JvmName / @JvmRecord 패턴 적용. plugin.spring 은 @Service / @Component /
// @RestController 같은 Spring 빈 클래스를 자동으로 `open` 처리, plugin.jpa 는
// @Entity 클래스에 noarg 생성자를 합성한다.
kotlin("jvm") version "1.9.25"
kotlin("plugin.spring") version "1.9.25"
kotlin("plugin.jpa") version "1.9.25"
id("org.springframework.boot") version "3.5.14"
kotlin("jvm") version "2.4.0"
kotlin("plugin.spring") version "2.4.0"
kotlin("plugin.jpa") version "2.4.0"
id("org.springframework.boot") version "4.1.0"
id("io.spring.dependency-management") version "1.1.7"
// OpenAPI spec build-time export — generateOpenApiDocs 가 앱을 부팅한 뒤
// /v3/api-docs 를 fetch 해 docs/openapi/inventory-service.yaml 로 떨어뜨린다.
id("org.springdoc.openapi-gradle-plugin") version "1.9.0"
// Kover — Kotlin code coverage. ./gradlew koverXmlReport / koverHtmlReport.
id("org.jetbrains.kotlinx.kover") version "0.9.1"
id("org.jetbrains.kotlinx.kover") version "0.9.8"
}

group = "io.minishop"
Expand Down Expand Up @@ -53,15 +53,15 @@ dependencies {
implementation("io.micrometer:micrometer-registry-prometheus")

// Redisson for distributed locks (auto-configures from spring.data.redis.*)
implementation("org.redisson:redisson-spring-boot-starter:3.31.0")
implementation("org.redisson:redisson-spring-boot-starter:4.6.1")

implementation("io.opentelemetry.instrumentation:opentelemetry-spring-boot-starter")
implementation("io.opentelemetry.instrumentation:opentelemetry-logback-appender-1.0")

implementation("org.springframework.kafka:spring-kafka")

// OpenAPI / Swagger UI — REST API 를 OpenAPI 3 spec 으로 노출. Spring Boot 3.5 호환 2.8.x.
implementation("org.springdoc:springdoc-openapi-starter-webmvc-ui:2.8.9")
implementation("org.springdoc:springdoc-openapi-starter-webmvc-ui:3.0.3")

// Kotlin support — Jackson Kotlin 모듈은 data class 의 nullable / default 값을 정확히
// 역직렬화하기 위해 필요. reflect 는 Spring 의 인자 이름 기반 바인딩에 사용.
Expand Down
Binary file modified services/inventory-service/gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.4-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.6.0-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
11 changes: 4 additions & 7 deletions services/inventory-service/gradlew

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

176 changes: 82 additions & 94 deletions services/inventory-service/gradlew.bat

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion services/inventory-service/settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0"
}

rootProject.name = "inventory-service"
Loading