gitignore에 gradle관련 항목 추가

This commit is contained in:
hyeonsu 2025-08-28 13:42:52 +09:00
parent 9551626c27
commit 58d8fb1dd2
1 changed files with 28 additions and 0 deletions

28
.gitignore vendored
View File

@ -245,3 +245,31 @@ cache/
.vscode/settings.json
.idea/workspace.xml
*.user
# ===== Gradle 관련 파일들 (레거시 Java 프로젝트) =====
# Gradle 캐시 및 빌드 파일들
.gradle/
*/.gradle/
gradle/
gradlew
gradlew.bat
gradle.properties
build/
*/build/
# Gradle Wrapper
gradle-wrapper.jar
gradle-wrapper.properties
# IntelliJ IDEA 관련 (Gradle 프로젝트)
.idea/
*.iml
*.ipr
*.iws
out/
# Eclipse 관련 (Gradle 프로젝트)
.project
.classpath
.settings/
bin/