-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitignore
53 lines (41 loc) · 803 Bytes
/
.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
53
## Eclipse config files ##
.settings/
.classpath
.project
.factorypath
.externalToolBuilders
## PMD Eclipse plugin files ##
.pmd
## soapUI test reports ##
/holodeck/modules/holodeck-distribution/src/test/resources/soapui_testsuites/*.txt
## Maven output folder ##
target/
## Compiled java classes ##
*.class
*.jar # There are still some required jars bundled with the holodeck sources. Until this is resolved they have to stay in the repo.
*.war
*.ear
## generic files to ignore
*~
*.lock
*.DS_Store
*.swp
*.out
*.tmp
*.log
## Intellij IDEA files
.idea/
*.iml
*.ipr
*.iws
## Files generated by checksum plugin
*.sha256
## maven-shade-plugin generated files
dependency-reduced-pom.xml
## Node files
node_modules
# Skip all folders like
dist/
log/
# Skip VisualStudio Code folders
.vscode/