Skip to content

Commit c9bf148

Browse files
mostroverkhovrobertroeser
authored andcommitted
add gradlew jar (#19)
exclude gradlew jar from .gitignore
1 parent a8e8d96 commit c9bf148

File tree

2 files changed

+79
-0
lines changed

2 files changed

+79
-0
lines changed

.gitignore

Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
# Compiled source #
2+
###################
3+
*.com
4+
*.class
5+
*.dll
6+
*.exe
7+
*.o
8+
*.so
9+
10+
# Packages #
11+
############
12+
# it's better to unpack these files and commit the raw source
13+
# git has its own built in compression methods
14+
*.7z
15+
*.dmg
16+
*.gz
17+
*.iso
18+
*.jar
19+
*.rar
20+
*.tar
21+
*.zip
22+
23+
# Logs and databases #
24+
######################
25+
*.log
26+
27+
# OS generated files #
28+
######################
29+
.DS_Store*
30+
ehthumbs.db
31+
Icon?
32+
Thumbs.db
33+
34+
# Editor Files #
35+
################
36+
*~
37+
*.swp
38+
39+
# Gradle Files #
40+
################
41+
.gradle
42+
.ivy2
43+
.ivy2.cache
44+
.m2
45+
!gradle-wrapper.jar
46+
47+
# Build output directies
48+
/target
49+
*/target
50+
/build
51+
*/build
52+
53+
# IntelliJ specific files/directories
54+
out
55+
.idea
56+
*.ipr
57+
*.iws
58+
*.iml
59+
atlassian-ide-plugin.xml
60+
61+
# Eclipse specific files/directories
62+
.classpath
63+
.project
64+
.settings
65+
.metadata
66+
67+
# NetBeans specific files/directories
68+
.nbattrs
69+
/bin
70+
71+
#.gitignore in subdirectory
72+
#.gitignore
73+
74+
### infer ###
75+
# infer- http://fbinfer.com/
76+
infer-out
77+
*/infer-out
78+
.inferConfig
79+
*/.inferConfig

gradle/wrapper/gradle-wrapper.jar

53.4 KB
Binary file not shown.

0 commit comments

Comments
 (0)