Skip to content

Commit 981b009

Browse files
committed
fix: test passed.
1 parent ae8ac30 commit 981b009

18 files changed

Lines changed: 212 additions & 7 deletions

.gitignore

Lines changed: 210 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,212 @@
1-
# Ignore Gradle project-specific cache directory
2-
.gradle
1+
# Created by https://www.gitignore.io/api/java,maven,eclipse,netbeans,intellij+all
2+
# Edit at https://www.gitignore.io/?templates=java,maven,eclipse,netbeans,intellij+all
33

4-
# Ignore Gradle build output directory
5-
build
4+
### Eclipse ###
5+
.metadata
6+
bin/
7+
tmp/
8+
*.tmp
9+
*.bak
10+
*.swp
11+
*~.nib
12+
local.properties
13+
.settings/
14+
.loadpath
15+
.recommenders
616

7-
# Idea proj
8-
.idea
9-
out/
17+
# External tool builders
18+
.externalToolBuilders/
19+
20+
# Locally stored "Eclipse launch configurations"
21+
*.launch
22+
23+
# PyDev specific (Python IDE for Eclipse)
24+
*.pydevproject
25+
26+
# CDT-specific (C/C++ Development Tooling)
27+
.cproject
28+
29+
# CDT- autotools
30+
.autotools
31+
32+
# Java annotation processor (APT)
33+
.factorypath
34+
35+
# PDT-specific (PHP Development Tools)
36+
.buildpath
37+
38+
# sbteclipse plugin
39+
.target
40+
41+
# Tern plugin
42+
.tern-project
43+
44+
# TeXlipse plugin
45+
.texlipse
46+
47+
# STS (Spring Tool Suite)
48+
.springBeans
49+
50+
# Code Recommenders
51+
.recommenders/
52+
53+
# Annotation Processing
54+
.apt_generated/
55+
56+
# Scala IDE specific (Scala & Java development for Eclipse)
57+
.cache-main
58+
.scala_dependencies
59+
.worksheet
60+
61+
### Eclipse Patch ###
62+
# Eclipse Core
63+
.project
64+
65+
# JDT-specific (Eclipse Java Development Tools)
66+
.classpath
67+
68+
# Annotation Processing
69+
.apt_generated
70+
71+
.sts4-cache/
72+
73+
### Intellij+all ###
74+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
75+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
76+
77+
# User-specific stuff
78+
.idea/**/workspace.xml
79+
.idea/**/tasks.xml
80+
.idea/**/usage.statistics.xml
81+
.idea/**/dictionaries
82+
.idea/**/shelf
83+
84+
# Generated files
85+
.idea/**/contentModel.xml
86+
87+
# Sensitive or high-churn files
88+
.idea/**/dataSources/
89+
.idea/**/dataSources.ids
90+
.idea/**/dataSources.local.xml
91+
.idea/**/sqlDataSources.xml
92+
.idea/**/dynamic.xml
93+
.idea/**/uiDesigner.xml
94+
.idea/**/dbnavigator.xml
95+
96+
# Gradle
97+
.idea/**/gradle.xml
98+
.idea/**/libraries
99+
100+
# Gradle and Maven with auto-import
101+
# When using Gradle or Maven with auto-import, you should exclude module files,
102+
# since they will be recreated, and may cause churn. Uncomment if using
103+
# auto-import.
104+
# .idea/modules.xml
105+
# .idea/*.iml
106+
# .idea/modules
107+
# *.iml
108+
# *.ipr
109+
110+
# CMake
111+
cmake-build-*/
112+
113+
# Mongo Explorer plugin
114+
.idea/**/mongoSettings.xml
115+
116+
# File-based project format
117+
*.iws
118+
119+
# IntelliJ
120+
out/
121+
122+
# mpeltonen/sbt-idea plugin
123+
.idea_modules/
124+
125+
# JIRA plugin
126+
atlassian-ide-plugin.xml
127+
128+
# Cursive Clojure plugin
129+
.idea/replstate.xml
130+
131+
# Crashlytics plugin (for Android Studio and IntelliJ)
132+
com_crashlytics_export_strings.xml
133+
crashlytics.properties
134+
crashlytics-build.properties
135+
fabric.properties
136+
137+
# Editor-based Rest Client
138+
.idea/httpRequests
139+
140+
# Android studio 3.1+ serialized cache file
141+
.idea/caches/build_file_checksums.ser
142+
143+
### Intellij+all Patch ###
144+
# Ignores the whole .idea folder and all .iml files
145+
# See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360
146+
147+
.idea/
148+
149+
.DS_Store
150+
151+
# Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
152+
153+
*.iml
154+
modules.xml
155+
.idea/misc.xml
156+
*.ipr
157+
158+
# Sonarlint plugin
159+
.idea/sonarlint
160+
161+
### Java ###
162+
# Compiled class file
163+
*.class
164+
165+
# Log file
166+
*.log
167+
168+
# BlueJ files
169+
*.ctxt
170+
171+
# Mobile Tools for Java (J2ME)
172+
.mtj.tmp/
173+
174+
# Package Files #
175+
*.jar
176+
*.war
177+
*.nar
178+
*.ear
179+
*.zip
180+
*.tar.gz
181+
*.rar
182+
183+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
184+
hs_err_pid*
185+
186+
### Maven ###
187+
target/
188+
pom.xml.tag
189+
pom.xml.releaseBackup
190+
pom.xml.versionsBackup
191+
pom.xml.next
192+
release.properties
193+
dependency-reduced-pom.xml
194+
buildNumber.properties
195+
.mvn/timing.properties
196+
.mvn/wrapper/maven-wrapper.jar
197+
198+
### NetBeans ###
199+
**/nbproject/private/
200+
**/nbproject/Makefile-*.mk
201+
**/nbproject/Package-*.bash
202+
build/
203+
nbbuild/
204+
dist/
205+
nbdist/
206+
.nb-gradle/
207+
208+
# End of https://www.gitignore.io/api/java,maven,eclipse,netbeans,intellij+all
209+
210+
# Jrebel
211+
rebel.xml
212+
rebel-remote.xml
102 KB
Binary file not shown.
17 Bytes
Binary file not shown.
1 Byte
Binary file not shown.
17 Bytes
Binary file not shown.
24.4 KB
Binary file not shown.
17 Bytes
Binary file not shown.
20 KB
Binary file not shown.

.gradle/6.3/gc.properties

Whitespace-only changes.
570 KB
Binary file not shown.

0 commit comments

Comments
 (0)