Files
ax_hub_mcp_tool/dap-tool-report/build.gradle
juheelee c6632eac59
All checks were successful
Deploy to OCIWP / deploy (push) Successful in 6m11s
fix: tool report 수정
2026-08-14 13:39:50 +09:00

18 lines
533 B
Groovy

plugins {
id 'org.springframework.boot'
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.17.1'
implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.17.1'
implementation 'com.github.javaparser:javaparser-core:3.26.3'
implementation 'org.apache.poi:poi-ooxml:5.3.0'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
tasks.named('test') {
useJUnitPlatform()
}