Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
237 changes: 225 additions & 12 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,24 +1,237 @@
#----------------#
#----- Java -----#
#----------------#

# Compiled class file
*.class

# Log file
*.log

# BlueJ files
*.ctxt

# Mobile Tools for Java (J2ME)
.mtj.tmp/

# Package Files #
*.jar
*.war
*.nar
*.ear
*.zip
*.tar.gz
*.rar





#---------------#
#----- Git -----#
#---------------#

# Created by git for backups. To disable backups in Git:
# $ git config --global mergetool.keepBackup false
*.orig

# Created by git when using merge tools for conflicts
*.BACKUP.*
*.BASE.*
*.LOCAL.*
*.REMOTE.*
*_BACKUP_*.txt
*_BASE_*.txt
*_LOCAL_*.txt
*_REMOTE_*.txt





#-----------------#
#----- Maven -----#
#-----------------#

# Created by `mvn compile` and `mvn package`
target/
!.mvn/wrapper/maven-wrapper.jar

### STS ###
# Other unnecessary files
pom.xml.tag
pom.xml.releaseBackup
pom.xml.versionsBackup
pom.xml.next
dependency-reduced-pom.xml
buildNumber.properties
.mvn/timing.properties
.mvn/wrapper/maven-wrapper.jar





#---------------#
#----- STS -----#
#---------------#

.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache





#-------------------#
#----- VS Code -----#
#-------------------#

.vscode/





#-------------------------#
#----- IntelliJ IDEA -----#
#-------------------------#

### IntelliJ IDEA ###
.idea
*.iws
*.iml
*.ipr

### NetBeans ###
nbproject/private/




#--------------------#
#----- NetBeans -----#
#--------------------#

/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
build/
nbbuild/
dist/
nbdist/
.nb-gradle/
/nbproject/
!**/src/main/**/build/
!**/src/test/**/build/





#-------------------#
#----- Eclipse -----#
#-------------------#

# Unnecessary files
.metadata
bin/
tmp/
*.tmp
*.bak
*.swp
*~.nib
.settings/
.loadpath
.recommenders

# External tool builders
.externalToolBuilders/

# Locally stored "Eclipse launch configurations"
*.launch

# PyDev specific (Python IDE for Eclipse)
*.pydevproject

# CDT-specific (C/C++ Development Tooling)
.cproject

# CDT- autotools
.autotools

# Java annotation processor (APT)
.factorypath

# PDT-specific (PHP Development Tools)
.buildpath

# sbteclipse plugin
.target

# Tern plugin
.tern-project

# TeXlipse plugin
.texlipse

# Code Recommenders
.recommenders/

# Annotation Processing
.apt_generated/

# Scala IDE specific (Scala & Java development for Eclipse)
.cache-main
.scala_dependencies
.worksheet

# Eclipse Core
.project

# Annotation Processing
.apt_generated
.sts4-cache/





#-------------------#
#----- Windows -----#
#-------------------#

# Windows thumbnail cache files
Thumbs.db
ehthumbs.db
ehthumbs_vista.db

# Dump file
*.stackdump

# Folder config file
[Dd]esktop.ini

# Recycle Bin used on file shares
$RECYCLE.BIN/

# Windows Installer files
*.cab
*.msi
*.msix
*.msm
*.msp

# Windows shortcuts
*.lnk





#-------------------------------------------#
#----- Additional Ignores (Sort Later) -----#
#-------------------------------------------#

bin
build
target
.gradle
.exercism
.DS_Store
/scratch
README.html
Loading