forked from inductiveautomation/ignition-maven-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.hgignore
50 lines (40 loc) · 767 Bytes
/
.hgignore
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
# A general .gitignore for Gradle built Java projects that
# may use IntelliJ or Eclipse as an IDE.
syntax: glob
# Ignition Module files
*.modl
# Java class files
*.class
# generated files
bin/
gen/
# Local configuration file used for proj. specific settings (sdk paths, etc)
local.properties
# Eclipse project files
.classpath
.project
# Intellij project files
*.iml
*.ipr
*.iws
.idea/
# git repos
.git/
# Maven related
*/target/
**/target
# Gradle related files and caches
.gradletasknamecache
.gradle/
build/
bin/
syntax: regexp
^(.*[\\/])?gen[\\/].*
^(.*[\\/])?bin[\\/].*
^(.*[\\/])?obj[\\/].*
^(.*[\\/])?log[\\/].*
^(.*[\\/])?obf[\\/].*
^(.*[\\/])?jars[\\/].*
^(.*[\\/])?jar-sources[\\/].*
^(.*[\\/])?javadoc[\\/].*
^(.*[\\/])?.metadata[\\/].*