Skip to content

Commit e816325

Browse files
committed
Update
1 parent da9d4b3 commit e816325

File tree

77 files changed

+887
-2104
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+887
-2104
lines changed

.gitignore

Lines changed: 147 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,152 @@
1-
HELP.md
2-
.gradle
3-
gradle/
4-
build/
5-
!gradle/wrapper/gradle-wrapper.jar
6-
!**/src/main/**
7-
!**/src/test/**
8-
9-
### STS ###
10-
.apt_generated
11-
.classpath
12-
.factorypath
13-
.project
14-
.settings
15-
.springBeans
16-
.sts4-cache
17-
18-
### IntelliJ IDEA ###
19-
.idea
1+
### Intellij+all ###
2+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
3+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
4+
5+
# User-specific stuff
6+
.idea/**/workspace.xml
7+
.idea/**/tasks.xml
8+
.idea/**/usage.statistics.xml
9+
.idea/**/dictionaries
10+
.idea/**/shelf
11+
12+
# Generated files
13+
.idea/**/contentModel.xml
14+
15+
# Sensitive or high-churn files
16+
.idea/**/dataSources/
17+
.idea/**/dataSources.ids
18+
.idea/**/dataSources.local.xml
19+
.idea/**/sqlDataSources.xml
20+
.idea/**/dynamic.xml
21+
.idea/**/uiDesigner.xml
22+
.idea/**/dbnavigator.xml
23+
24+
# Gradle
25+
.idea/**/gradle.xml
26+
.idea/**/libraries
27+
28+
# Gradle and Maven with auto-import
29+
# When using Gradle or Maven with auto-import, you should exclude module files,
30+
# since they will be recreated, and may cause churn. Uncomment if using
31+
# auto-import.
32+
# .idea/artifacts
33+
# .idea/compiler.xml
34+
# .idea/jarRepositories.xml
35+
# .idea/modules.xml
36+
# .idea/*.iml
37+
# .idea/modules
38+
# *.iml
39+
# *.ipr
40+
41+
# CMake
42+
cmake-build-*/
43+
44+
# Mongo Explorer plugin
45+
.idea/**/mongoSettings.xml
46+
47+
# File-based project format
2048
*.iws
49+
50+
# IntelliJ
51+
out/
52+
53+
# mpeltonen/sbt-idea plugin
54+
.idea_modules/
55+
56+
# JIRA plugin
57+
atlassian-ide-plugin.xml
58+
59+
# Cursive Clojure plugin
60+
.idea/replstate.xml
61+
62+
# Crashlytics plugin (for Android Studio and IntelliJ)
63+
com_crashlytics_export_strings.xml
64+
crashlytics.properties
65+
crashlytics-build.properties
66+
fabric.properties
67+
68+
# Editor-based Rest Client
69+
.idea/httpRequests
70+
71+
# Android studio 3.1+ serialized cache file
72+
.idea/caches/build_file_checksums.ser
73+
74+
### Intellij+all Patch ###
75+
# Ignores the whole .idea folder and all .iml files
76+
# See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360
77+
78+
.idea/
79+
80+
# Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
81+
2182
*.iml
83+
modules.xml
84+
.idea/misc.xml
2285
*.ipr
23-
out/
2486

25-
### NetBeans ###
26-
/nbproject/private/
27-
/nbbuild/
28-
/dist/
29-
/nbdist/
30-
/.nb-gradle/
87+
# Sonarlint plugin
88+
.idea/sonarlint
89+
90+
### Java ###
91+
# Compiled class file
92+
*.class
93+
94+
# Log file
95+
*.log
96+
97+
# BlueJ files
98+
*.ctxt
99+
100+
# Mobile Tools for Java (J2ME)
101+
.mtj.tmp/
102+
103+
# Package Files #
104+
*.jar
105+
*.war
106+
*.nar
107+
*.ear
108+
*.zip
109+
*.tar.gz
110+
*.rar
111+
112+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
113+
hs_err_pid*
114+
115+
### Maven ###
116+
target/
117+
pom.xml.tag
118+
pom.xml.releaseBackup
119+
pom.xml.versionsBackup
120+
pom.xml.next
121+
release.properties
122+
dependency-reduced-pom.xml
123+
buildNumber.properties
124+
.mvn/timing.properties
125+
# https://github.com/takari/maven-wrapper#usage-without-binary-jar
126+
.mvn/wrapper/maven-wrapper.jar
127+
128+
### Windows ###
129+
# Windows thumbnail cache files
130+
Thumbs.db
131+
Thumbs.db:encryptable
132+
ehthumbs.db
133+
ehthumbs_vista.db
134+
135+
# Dump file
136+
*.stackdump
137+
138+
# Folder config file
139+
[Dd]esktop.ini
140+
141+
# Recycle Bin used on file shares
142+
$RECYCLE.BIN/
143+
144+
# Windows Installer files
145+
*.cab
146+
*.msi
147+
*.msix
148+
*.msm
149+
*.msp
31150

32-
### VS Code ###
33-
.vscode/
151+
# Windows shortcuts
152+
*.lnk

build.gradle

Lines changed: 0 additions & 31 deletions
This file was deleted.

gradlew

Lines changed: 0 additions & 183 deletions
This file was deleted.

0 commit comments

Comments
 (0)