generated from pricelees/issue-pr-template
<!-- 제목 양식 --> <!-- [이슈번호] 작업 요약 (예시: [#10] Gitea 템플릿 생성) --> ## 📝 관련 이슈 및 PR **PR과 관련된 이슈 번호** - #48 ## ✨ 작업 내용 <!-- 어떤 작업을 했는지 알려주세요! --> - Tosspay mocking 서버를 해당 프로젝트 내 구현할 때 각 서비스간 구분이 수월하도록 모듈 분리 - 분리하는 과정에서 추후 공통적으로 활용될 수 있다고 판단한 기능들은 common 모듈로 분리 - 일부 테스트 보완 ## 🧪 테스트 <!-- 어떤 테스트를 생각했고 진행했는지 알려주세요! --> <img width="612" alt="스크린샷 2025-09-29 22.05.25.png" src="attachments/d401a48a-3dd5-4ced-9315-b9d8aff16bf9"> - 전체 테스트 후 클래스 커버리지 기준 100% 달성 확인 ## 📚 참고 자료 및 기타 <!-- 참고한 자료, 또는 논의할 사항이 있다면 알려주세요! --> Reviewed-on: #49 Co-authored-by: pricelees <priceelees@gmail.com> Co-committed-by: pricelees <priceelees@gmail.com>
64 lines
2.0 KiB
Plaintext
64 lines
2.0 KiB
Plaintext
plugins {
|
|
id("org.springframework.boot")
|
|
kotlin("plugin.spring")
|
|
kotlin("plugin.jpa")
|
|
}
|
|
|
|
dependencies {
|
|
// Spring
|
|
implementation("org.springframework.boot:spring-boot-starter-web")
|
|
implementation("org.springframework.boot:spring-boot-starter-data-jpa")
|
|
implementation("org.springframework.boot:spring-boot-starter-validation")
|
|
|
|
// API docs
|
|
implementation("org.springdoc:springdoc-openapi-starter-webmvc-ui:2.8.13")
|
|
|
|
// DB
|
|
implementation("com.github.f4b6a3:tsid-creator:5.2.6")
|
|
runtimeOnly("com.h2database:h2")
|
|
runtimeOnly("com.mysql:mysql-connector-j")
|
|
|
|
// Jwt
|
|
implementation("io.jsonwebtoken:jjwt:0.12.6")
|
|
|
|
// Logging
|
|
implementation("net.logstash.logback:logstash-logback-encoder:8.1")
|
|
implementation("com.github.loki4j:loki-logback-appender:2.0.0")
|
|
implementation("net.ttddyy.observation:datasource-micrometer-spring-boot:1.1.1")
|
|
|
|
// Observability
|
|
implementation("org.springframework.boot:spring-boot-starter-actuator")
|
|
implementation("io.micrometer:micrometer-tracing-bridge-otel")
|
|
implementation("io.opentelemetry:opentelemetry-exporter-otlp")
|
|
runtimeOnly("io.micrometer:micrometer-registry-prometheus")
|
|
|
|
// Kotlin
|
|
implementation("org.jetbrains.kotlin:kotlin-reflect")
|
|
|
|
// Test
|
|
testImplementation("org.springframework.boot:spring-boot-starter-test")
|
|
testImplementation("io.mockk:mockk:1.14.4")
|
|
testImplementation("com.ninja-squad:springmockk:4.0.2")
|
|
|
|
// Kotest
|
|
testImplementation("io.kotest.extensions:kotest-extensions-spring:1.3.0")
|
|
|
|
// RestAssured
|
|
testImplementation("io.rest-assured:rest-assured:5.5.5")
|
|
testImplementation("io.rest-assured:kotlin-extensions:5.5.5")
|
|
|
|
// etc
|
|
implementation("org.apache.poi:poi-ooxml:5.2.3")
|
|
|
|
// submodules
|
|
implementation(project(":common:persistence"))
|
|
implementation(project(":common:utils"))
|
|
implementation(project(":common:types"))
|
|
implementation(project(":common:log"))
|
|
implementation(project(":common:web"))
|
|
}
|
|
|
|
tasks.named<Jar>("jar") {
|
|
enabled = false
|
|
}
|