Skip to content

Commit d3dd2ba

Browse files
author
Ben Asmussen
committed
Add .gitignore file
1 parent 39a6bb4 commit d3dd2ba

1 file changed

Lines changed: 136 additions & 0 deletions

File tree

.gitignore

Lines changed: 136 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,136 @@
1+
# Maven
2+
target/
3+
pom.xml.tag
4+
pom.xml.releaseBackup
5+
pom.xml.versionsBackup
6+
pom.xml.next
7+
release.properties
8+
dependency-reduced-pom.xml
9+
buildNumber.properties
10+
.mvn/timing.properties
11+
.mvn/wrapper/maven-wrapper.jar
12+
13+
# Compiled class files
14+
*.class
15+
16+
# Log files
17+
*.log
18+
logs/
19+
*.log.*
20+
21+
# Package Files
22+
*.jar
23+
*.war
24+
*.nar
25+
*.ear
26+
*.zip
27+
*.tar.gz
28+
*.rar
29+
30+
# IntelliJ IDEA
31+
.idea/
32+
*.iws
33+
*.iml
34+
*.ipr
35+
out/
36+
.idea_modules/
37+
38+
# Eclipse
39+
.metadata/
40+
bin/
41+
tmp/
42+
*.tmp
43+
*.bak
44+
*.swp
45+
*~.nib
46+
local.properties
47+
.settings/
48+
.loadpath
49+
.recommenders
50+
.project
51+
.externalToolBuilders/
52+
*.launch
53+
.classpath
54+
.factorypath
55+
.buildpath
56+
.target
57+
58+
# NetBeans
59+
nbproject/private/
60+
build/
61+
nbbuild/
62+
dist/
63+
nbdist/
64+
.nb-gradle/
65+
nb-configuration.xml
66+
67+
# Visual Studio Code
68+
.vscode/
69+
*.code-workspace
70+
.history/
71+
72+
# Mac OS
73+
.DS_Store
74+
.AppleDouble
75+
.LSOverride
76+
._*
77+
78+
# Windows
79+
Thumbs.db
80+
ehthumbs.db
81+
Desktop.ini
82+
$RECYCLE.BIN/
83+
*.cab
84+
*.msi
85+
*.msix
86+
*.msm
87+
*.msp
88+
*.lnk
89+
90+
# Linux
91+
*~
92+
.fuse_hidden*
93+
.directory
94+
.Trash-*
95+
.nfs*
96+
97+
# JetBrains
98+
.idea/
99+
*.iml
100+
*.iws
101+
*.ipr
102+
cmake-build-*/
103+
.idea/**/workspace.xml
104+
.idea/**/tasks.xml
105+
.idea/**/usage.statistics.xml
106+
.idea/**/dictionaries
107+
.idea/**/shelf
108+
.idea/**/contentModel.xml
109+
.idea/**/dataSources/
110+
.idea/**/dataSources.ids
111+
.idea/**/dataSources.local.xml
112+
.idea/**/sqlDataSources.xml
113+
.idea/**/dynamic.xml
114+
.idea/**/uiDesigner.xml
115+
.idea/**/dbnavigator.xml
116+
.idea/**/gradle.xml
117+
.idea/**/libraries
118+
.idea/artifacts
119+
.idea/compiler.xml
120+
.idea/jarRepositories.xml
121+
.idea/modules.xml
122+
.idea/*.iml
123+
.idea/modules
124+
*.ipr
125+
126+
# Java
127+
hs_err_pid*
128+
replay_pid*
129+
130+
# Maven Wrapper
131+
!.mvn/wrapper/maven-wrapper.jar
132+
!**/src/main/**/target/
133+
!**/src/test/**/target/
134+
135+
# Spring Boot
136+
*.pid

0 commit comments

Comments
 (0)