mirror of
https://github.com/hwanny1128/HGZero.git
synced 2025-12-06 06:46:24 +00:00
- settings.gradle: ai 모듈을 빌드에서 제외 (Python으로 구현됨) - .gitignore: ai, ai-java-back 백업 디렉토리 추가 문제: GitHub Actions에서 빈 ai 모듈 빌드 시 메인 클래스 찾을 수 없어 실패 해결: AI 서비스는 ai-python(FastAPI)으로 구현되므로 Java 모듈에서 제외 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
9 lines
185 B
Groovy
9 lines
185 B
Groovy
rootProject.name = 'hgzero'
|
|
|
|
include 'common'
|
|
include 'user'
|
|
include 'meeting'
|
|
include 'stt'
|
|
// include 'ai' // AI 서비스는 Python(ai-python)으로 구현됨
|
|
include 'notification'
|