-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
60 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,78 @@ | ||
# =========================== | ||
# Java 프로젝트 기본 무시 규칙 | ||
# =========================== | ||
|
||
# 컴파일된 .class 파일 | ||
*.class | ||
|
||
# =========================== | ||
# Maven 관련 파일 및 디렉토리 | ||
# =========================== | ||
|
||
# Maven 빌드 결과물 | ||
target/ | ||
|
||
# Eclipse 설정 파일 | ||
# =========================== | ||
# Eclipse 관련 설정 파일 | ||
# (Eclipse를 사용하는 경우 필요, 사용하지 않으면 주석 처리 가능) | ||
# =========================== | ||
.classpath | ||
.project | ||
.settings/ | ||
.springBeans | ||
|
||
# Maven/Eclipse 통합 플러그인 (M2E-WTP) | ||
**/m2e-wtp/ | ||
# =========================== | ||
# IntelliJ IDEA 관련 파일 | ||
# (IntelliJ를 사용하는 경우 필요, 사용하지 않으면 주석 처리 가능) | ||
# =========================== | ||
.idea/ | ||
*.iml | ||
out/ | ||
|
||
# OS 관련 파일 | ||
# =========================== | ||
# IDE와 관련 없는 빌드 디렉토리 | ||
# =========================== | ||
|
||
# Eclipse, IntelliJ, VSCode 등에서 생성된 빌드 디렉토리 | ||
bin/ | ||
|
||
# =========================== | ||
# 운영체제별 무시 파일 | ||
# =========================== | ||
|
||
# macOS 관련 | ||
.DS_Store | ||
|
||
# Windows 관련 | ||
Thumbs.db | ||
desktop.ini | ||
|
||
# IntelliJ IDEA 설정 파일 | ||
.idea/ | ||
*.iml | ||
# =========================== | ||
# 테스트 코드 디렉토리 | ||
# =========================== | ||
|
||
# 환경 설정 파일 | ||
*.properties | ||
*.yml | ||
.env | ||
# 테스트 디렉토리는 프로젝트의 중요한 부분이므로 무시하지 않습니다. | ||
# src/test/ | ||
|
||
# =========================== | ||
# 로그 파일 | ||
# =========================== | ||
|
||
# 로그 파일 | ||
*.log | ||
|
||
# Gradle | ||
.gradle/ | ||
build/ | ||
# =========================== | ||
# 환경 설정 파일 | ||
# =========================== | ||
|
||
# Ignore compiled class files | ||
*.class | ||
# 개인 환경 설정 파일 | ||
.env | ||
*.env | ||
|
||
# =========================== | ||
# 기타 | ||
# =========================== | ||
|
||
# 특정 파일이나 디렉토리가 필요 없다면 여기에 추가 | ||
# 예: 임시 작업 파일 | ||
*.tmp | ||
*.bak |