-
Notifications
You must be signed in to change notification settings - Fork 10
/
.gitignore
43 lines (36 loc) · 1.1 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
# never check in class files
*.class
# eclipse output files
**/eclipse-output
**/.project
**/.classpath
**/.settings
#This is only here as the gradle build plugin is ignore the eclipse defaultOutput
**/bin
# In starting ProdServerForIDE, it creates webpiecesCache in a not so good location so ignore from git in case this happens
# ALSO, the location is different if you are in Intellij vs. eclipse as it doesn't use the BASE directory we use
**/webpiecesCache
#gradle output files
**/output
**/.gradle/
#Intellij keeps creating gradle wrapper install all over the place!! grrrr
*/**/gradlew.bat
*/**/gradlew
#This one prevents the package..../gradle/.... in the plugin from existing..
#*/**/gradle
**/gradle
!/gradle
!/webserver-templates/webpiecesServerBuilder/gradle
!/webserver-templates/webpiecesServerBuilder/gradlew
!/webserver-templates/webpiecesServerBuilder/gradlew.bat
!/html-gradle-plugin/gradle-plugin-htmlcompiler/src/main/java/org/webpieces/gradle
#Intellij Idea files
*.iml
.idea
**/out
#Do I need these too...
#*.iws
#*.ipr
# What is this. it popped up on mac (not using intellij)
.DS_Store
build/