feat: tool 파트 보고서 생성 로직
All checks were successful
Deploy to OCIWP / deploy (push) Successful in 6m29s

This commit is contained in:
juheelee
2026-08-07 17:41:13 +09:00
parent 045dd65c77
commit f097555204
17 changed files with 864 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
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.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()
}