Skip to content

Commit db38756

Browse files
committed
up
0 parents  commit db38756

File tree

9 files changed

+561
-0
lines changed

9 files changed

+561
-0
lines changed

.gitattributes

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#
2+
# https://help.github.com/articles/dealing-with-line-endings/
3+
#
4+
# These are explicitly windows files and should use crlf
5+
*.bat text eol=crlf
6+

.gitignore

Lines changed: 90 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
# Ignore Gradle project-specific cache directory
2+
.gradle
3+
4+
# Ignore Gradle build output directory
5+
build
6+
7+
##############################
8+
## Java
9+
##############################
10+
.mtj.tmp/
11+
*.class
12+
*.jar
13+
*.war
14+
*.ear
15+
*.nar
16+
hs_err_pid*
17+
18+
##############################
19+
## Maven
20+
##############################
21+
target/
22+
pom.xml.tag
23+
pom.xml.releaseBackup
24+
pom.xml.versionsBackup
25+
pom.xml.next
26+
pom.xml.bak
27+
release.properties
28+
dependency-reduced-pom.xml
29+
buildNumber.properties
30+
.mvn/timing.properties
31+
.mvn/wrapper/maven-wrapper.jar
32+
33+
##############################
34+
## Gradle
35+
##############################
36+
bin/
37+
build/
38+
.gradle
39+
.gradletasknamecache
40+
gradle-app.setting
41+
!gradle-wrapper.jar
42+
43+
##############################
44+
## IntelliJ
45+
##############################
46+
out/
47+
.idea/
48+
.idea_modules/
49+
*.iml
50+
*.ipr
51+
*.iws
52+
53+
##############################
54+
## Eclipse
55+
##############################
56+
.settings/
57+
bin/
58+
tmp/
59+
.metadata
60+
.classpath
61+
.project
62+
*.tmp
63+
*.bak
64+
*.swp
65+
*~.nib
66+
local.properties
67+
.loadpath
68+
.factorypath
69+
70+
##############################
71+
## NetBeans
72+
##############################
73+
nbproject/private/
74+
build/
75+
nbbuild/
76+
dist/
77+
nbdist/
78+
nbactions.xml
79+
nb-configuration.xml
80+
81+
##############################
82+
## Visual Studio Code
83+
##############################
84+
.vscode/
85+
.code-workspace
86+
87+
##############################
88+
## OS X
89+
##############################
90+
.DS_Store

gradle/wrapper/gradle-wrapper.jar

58.1 KB
Binary file not shown.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
distributionBase=GRADLE_USER_HOME
2+
distributionPath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
4+
zipStoreBase=GRADLE_USER_HOME
5+
zipStorePath=wrapper/dists

gradlew

Lines changed: 234 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)