generated from pricelees/issue-pr-template
<!-- 제목 양식 --> <!-- [이슈번호] 작업 요약 (예시: [#10] Gitea 템플릿 생성) --> ## 📝 관련 이슈 및 PR **PR과 관련된 이슈 번호** - #50 ## ✨ 작업 내용 <!-- 어떤 작업을 했는지 알려주세요! --> - 입력된 paymentKey 등을 담아, 랜덤한 결제 정보를 반환하도록 구현 - 전체 중 50%는 간편결제 + 카드, 25%는 카드, 20%는 간편결제(선불 충전액), 나머지 5%는 계좌이체 결과를 반환 - micrometer 적용으로 Main Service와의 Tracing 처리 - 해당 서비스는 GCP에 배포 예정 ## 🧪 테스트 <!-- 어떤 테스트를 생각했고 진행했는지 알려주세요! --> - 전체 기능 테스트 완료 ## 📚 참고 자료 및 기타 <!-- 참고한 자료, 또는 논의할 사항이 있다면 알려주세요! --> Reviewed-on: #51 Co-authored-by: pricelees <priceelees@gmail.com> Co-committed-by: pricelees <priceelees@gmail.com>
29 lines
973 B
Plaintext
29 lines
973 B
Plaintext
plugins {
|
|
id("org.springframework.boot")
|
|
kotlin("plugin.spring")
|
|
kotlin("plugin.jpa")
|
|
}
|
|
|
|
dependencies {
|
|
implementation("org.springframework.boot:spring-boot-starter-actuator")
|
|
implementation("net.logstash.logback:logstash-logback-encoder:8.1")
|
|
implementation("io.micrometer:micrometer-tracing-bridge-otel")
|
|
implementation("io.opentelemetry:opentelemetry-exporter-otlp")
|
|
|
|
implementation(project(":common:web"))
|
|
implementation(project(":common:types"))
|
|
implementation(project(":common:persistence"))
|
|
|
|
runtimeOnly("io.micrometer:micrometer-registry-prometheus")
|
|
runtimeOnly("com.h2database:h2")
|
|
|
|
testImplementation("org.springframework.boot:spring-boot-starter-test")
|
|
testImplementation("io.kotest.extensions:kotest-extensions-spring:1.3.0")
|
|
testImplementation("io.rest-assured:rest-assured:5.5.5")
|
|
testImplementation("io.rest-assured:kotlin-extensions:5.5.5")
|
|
}
|
|
|
|
tasks.named<Jar>("jar") {
|
|
enabled = false
|
|
}
|