-
Notifications
You must be signed in to change notification settings - Fork 9
/
.gitignore
57 lines (46 loc) · 1.44 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# --------------------------------------------------------
# Custom '.gitignore' Template v. 0.1
# --------------------------------------------------------
# === Maven Specific ===
# Target directory where compiled classes and build artifacts are stored
target/
# Temporary files created during Maven builds
pom.xml.tag
pom.xml.releaseBackup
pom.xml.versionsBackup
pom.xml.next
release.properties
dependency-reduced-pom.xml
buildNumber.properties
# Maven wrapper binary (should not be committed, it can be downloaded)
.mvn/wrapper/maven-wrapper.jar
# Timing properties from Maven builds
.mvn/timing.properties
# === IDE Specific ===
# IntelliJ IDEA project files and configurations
.idea/ # IntelliJ IDEA project folder (includes settings, caches, etc.)
*.iml # IntelliJ module files
# Eclipse project files
.settings/ # Eclipse settings folder
.classpath # Eclipse classpath configuration
.project # Eclipse project configuration
# === Operating System Specific ===
# macOS Finder metadata files
.DS_Store
# Windows Thumbs.db cache
Thumbs.db
# === Log and Backup Files ===
# Logs and temporary files
*.log # Log files
*.bak # Backup files
*.swp # Swap files created by editors
# === Build Tools ===
# Gradle build folder
build/
# === Java Generated Files ===
# JAR files (compiled Java libraries)
*.jar
# WAR files (web application archives)
*.war
# EAR files (enterprise application archives)
*.ear