-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Loading status checks…
Merge pull request #139 from RedstoneFuture/master
Updating .gitignore file
Showing
1 changed file
with
44 additions
and
11 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,24 +1,57 @@ | ||
# Maven | ||
# -------------------------------------------------------- | ||
# 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 | ||
|
||
# Eclipse | ||
bin/ | ||
.settings | ||
.project | ||
.classpath | ||
# === IDE Specific === | ||
# IntelliJ IDEA project files and configurations | ||
.idea/ # IntelliJ IDEA project folder (includes settings, caches, etc.) | ||
*.iml # IntelliJ module files | ||
|
||
# IntelliJ | ||
out/ | ||
.idea/ | ||
*.iml | ||
# Eclipse project files | ||
.settings/ # Eclipse settings folder | ||
.classpath # Eclipse classpath configuration | ||
.project # Eclipse project configuration | ||
|
||
# Misc | ||
# === 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 |