|
a |
|
b/recommendation-engine/.gitignore |
|
|
1 |
#Java
|
|
|
2 |
*.class
|
|
|
3 |
|
|
|
4 |
# Package Files #
|
|
|
5 |
*.jar
|
|
|
6 |
*.war
|
|
|
7 |
*.ear
|
|
|
8 |
|
|
|
9 |
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
|
|
|
10 |
hs_err_pid*
|
|
|
11 |
|
|
|
12 |
# Eclipse
|
|
|
13 |
.classpath
|
|
|
14 |
.project
|
|
|
15 |
.settings
|
|
|
16 |
.metadata
|
|
|
17 |
bin/**
|
|
|
18 |
tmp/**
|
|
|
19 |
tmp/**/*
|
|
|
20 |
*.tmp
|
|
|
21 |
*.bak
|
|
|
22 |
*.swp
|
|
|
23 |
*~.nib
|
|
|
24 |
local.properties
|
|
|
25 |
.settings/
|
|
|
26 |
.loadpath
|
|
|
27 |
|
|
|
28 |
#Maven
|
|
|
29 |
target/
|
|
|
30 |
pom.xml.tag
|
|
|
31 |
pom.xml.releaseBackup
|
|
|
32 |
pom.xml.versionsBackup
|
|
|
33 |
pom.xml.next
|
|
|
34 |
release.properties
|
|
|
35 |
|
|
|
36 |
/target/
|
|
|
37 |
/target/
|
|
|
38 |
|
|
|
39 |
# show git log script
|
|
|
40 |
showGitLog.sh
|
|
|
41 |
|
|
|
42 |
#IntelliJ
|
|
|
43 |
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm
|
|
|
44 |
|
|
|
45 |
*.iml
|
|
|
46 |
|
|
|
47 |
## Directory-based project format:
|
|
|
48 |
.idea/
|
|
|
49 |
# if you remove the above rule, at least ignore the following:
|
|
|
50 |
|
|
|
51 |
# User-specific stuff:
|
|
|
52 |
# .idea/workspace.xml
|
|
|
53 |
# .idea/tasks.xml
|
|
|
54 |
# .idea/dictionaries
|
|
|
55 |
|
|
|
56 |
# Sensitive or high-churn files:
|
|
|
57 |
# .idea/dataSources.ids
|
|
|
58 |
# .idea/dataSources.xml
|
|
|
59 |
# .idea/sqlDataSources.xml
|
|
|
60 |
# .idea/dynamic.xml
|
|
|
61 |
# .idea/uiDesigner.xml
|
|
|
62 |
|
|
|
63 |
# Gradle:
|
|
|
64 |
# .idea/gradle.xml
|
|
|
65 |
# .idea/libraries
|
|
|
66 |
|
|
|
67 |
# Mongo Explorer plugin:
|
|
|
68 |
# .idea/mongoSettings.xml
|
|
|
69 |
|
|
|
70 |
## File-based project format:
|
|
|
71 |
*.ipr
|
|
|
72 |
*.iws
|