e0eaf5a24b
검증 결과: - 정적 검증: Mapper-XML 매칭 OK (24개 메뉴코드 ↔ DB 매칭) - TypeScript: 0 errors (vite-env.d.ts 추가) - vite build: 성공 (dist/ 생성, 1.3MB → gzip 411KB) - gradle :ga-api:bootJar: 성공 (74MB) - gradle :ga-batch:bootJar: 성공 (76MB) 수정 사항: - ga-common/core/admin: bootJar.enabled=false 제거 (spring-boot 플러그인 미적용 모듈에서 task 참조 에러) - ga-frontend/vite.config.ts: '@/*' alias 추가 (Rollup이 path resolution 못함) - ga-frontend/src/vite-env.d.ts: import.meta.env 타입 정의 - ga-frontend/components/ExcelExportButton: params 타입 완화 (Record<string,unknown> | object) - gradle wrapper 8.6 추가 (./gradlew 사용 가능) - .gitignore: .claude/ 추가 (Agent Teams 개인 설정)
34 lines
1.2 KiB
Groovy
34 lines
1.2 KiB
Groovy
// ga-common: 공통 프레임워크 (라이브러리 모듈 — spring-boot 플러그인 미적용)
|
|
dependencies {
|
|
api 'org.springframework.boot:spring-boot-starter-web'
|
|
api 'org.springframework.boot:spring-boot-starter-aop'
|
|
api 'org.springframework.boot:spring-boot-starter-security'
|
|
api 'org.springframework.boot:spring-boot-starter-validation'
|
|
api 'org.springframework.boot:spring-boot-starter-data-redis'
|
|
api 'org.springframework.boot:spring-boot-starter-cache'
|
|
|
|
// MyBatis
|
|
api 'org.mybatis.spring.boot:mybatis-spring-boot-starter:3.0.3'
|
|
api 'com.github.pagehelper:pagehelper-spring-boot-starter:2.1.0'
|
|
|
|
// PostgreSQL + Flyway
|
|
api 'org.postgresql:postgresql'
|
|
api 'org.flywaydb:flyway-core'
|
|
|
|
// JWT
|
|
api 'io.jsonwebtoken:jjwt-api:0.12.5'
|
|
runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.12.5'
|
|
runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.12.5'
|
|
|
|
// Excel
|
|
api 'org.apache.poi:poi-ooxml:5.2.5'
|
|
api 'com.monitorjbl:xlsx-streamer:2.2.0'
|
|
|
|
// OpenAPI / Swagger
|
|
api 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.3.0'
|
|
|
|
// Commons
|
|
api 'org.apache.commons:commons-lang3'
|
|
api 'commons-io:commons-io:2.15.1'
|
|
}
|