-
Notifications
You must be signed in to change notification settings - Fork 7
/
.gitignore
52 lines (44 loc) · 1.03 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
# Common build output from Maven, Ant, IntelliJ, Eclipse
/target/
/build/
/out/
/classes/
/dependency-reduced-pom.xml
# Local configuration for development purposes
/conf/
local.*
*.local.*
# IDE project files for IntelliJ - it tends to generate lots of files depending
# on your exact version, which plugins are installed, etc., so ignore everything
# except for a vetted list of things we want. In particular, we want code
# formatting style (which needs to match the checkstyle Maven configuration).
/.idea/*
!/.idea/codeStyleSettings.xml
!/.idea/dataSources.ids
!/.idea/dataSources.xml
!/.idea/vcs.xml
!/.idea/compiler.xml
!/.idea/encodings.xml
!/.idea/modules.xml
!/.idea/copyright/
!/.idea/inspectionProfiles/
# TODO Eclipse project files
# Working directories for development
/.hsql/
/.vagrant/
/.vertx/
/file-uploads/
# Don't want any encryption keys in version control
*.jks
*.jceks
*.pkcs12
*.pk12
*.pem
*.pfx
# Operating system garbage
.DS_Store
[Tt]humbs.db
# Just in case you put this in Subversion
.svn/
# Emacs backup files
*~