Skip to content

Commit 9fdf135

Browse files
committed
save
1 parent bf26958 commit 9fdf135

File tree

19 files changed

+1230
-132122
lines changed

19 files changed

+1230
-132122
lines changed

.gitignore

Lines changed: 95 additions & 80 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,83 @@
1-
# User-specific stuff
2-
.idea/
1+
### Intellij template
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
34

4-
*.iml
5-
*.ipr
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+
# AWS User-specific
13+
.idea/**/aws.xml
14+
15+
# Generated files
16+
.idea/**/contentModel.xml
17+
18+
# Sensitive or high-churn files
19+
.idea/**/dataSources/
20+
.idea/**/dataSources.ids
21+
.idea/**/dataSources.local.xml
22+
.idea/**/sqlDataSources.xml
23+
.idea/**/dynamic.xml
24+
.idea/**/uiDesigner.xml
25+
.idea/**/dbnavigator.xml
26+
27+
# Gradle
28+
.idea/**/gradle.xml
29+
.idea/**/libraries
30+
31+
# Gradle and Maven with auto-import
32+
# When using Gradle or Maven with auto-import, you should exclude module files,
33+
# since they will be recreated, and may cause churn. Uncomment if using
34+
# auto-import.
35+
.idea/artifacts
36+
.idea/compiler.xml
37+
.idea/jarRepositories.xml
38+
.idea/modules.xml
39+
.idea/*.iml
40+
.idea/modules
41+
*.iml
42+
*.ipr
43+
44+
# CMake
45+
cmake-build-*/
46+
47+
# Mongo Explorer plugin
48+
.idea/**/mongoSettings.xml
49+
50+
# File-based project format
651
*.iws
752

853
# IntelliJ
954
out/
1055

56+
# mpeltonen/sbt-idea plugin
57+
.idea_modules/
58+
59+
# JIRA plugin
60+
atlassian-ide-plugin.xml
61+
62+
# Cursive Clojure plugin
63+
.idea/replstate.xml
64+
65+
# SonarLint plugin
66+
.idea/sonarlint/
67+
68+
# Crashlytics plugin (for Android Studio and IntelliJ)
69+
com_crashlytics_export_strings.xml
70+
crashlytics.properties
71+
crashlytics-build.properties
72+
fabric.properties
73+
74+
# Editor-based Rest Client
75+
.idea/httpRequests
76+
77+
# Android studio 3.1+ serialized cache file
78+
.idea/caches/build_file_checksums.ser
79+
80+
### Java template
1181
# Compiled class file
1282
*.class
1383

@@ -17,6 +87,9 @@ out/
1787
# BlueJ files
1888
*.ctxt
1989

90+
# Mobile Tools for Java (J2ME)
91+
.mtj.tmp/
92+
2093
# Package Files #
2194
*.jar
2295
*.war
@@ -28,86 +101,28 @@ out/
28101

29102
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
30103
hs_err_pid*
104+
replay_pid*
31105

32-
*~
33-
34-
# temporary files which can be created if a process still has a handle open of a deleted file
35-
.fuse_hidden*
36-
37-
# KDE directory preferences
38-
.directory
39-
40-
# Linux trash folder which might appear on any partition or disk
41-
.Trash-*
42-
43-
# .nfs files are created when an open file is removed but is still being accessed
44-
.nfs*
45-
46-
# General
47-
.DS_Store
48-
.AppleDouble
49-
.LSOverride
50-
51-
# Icon must end with two \r
52-
Icon
53-
54-
# Thumbnails
55-
._*
56-
57-
# Files that might appear in the root of a volume
58-
.DocumentRevisions-V100
59-
.fseventsd
60-
.Spotlight-V100
61-
.TemporaryItems
62-
.Trashes
63-
.VolumeIcon.icns
64-
.com.apple.timemachine.donotpresent
65-
66-
# Directories potentially created on remote AFP share
67-
.AppleDB
68-
.AppleDesktop
69-
Network Trash Folder
70-
Temporary Items
71-
.apdisk
72-
73-
# Windows thumbnail cache files
74-
Thumbs.db
75-
Thumbs.db:encryptable
76-
ehthumbs.db
77-
ehthumbs_vista.db
78-
79-
# Dump file
80-
*.stackdump
81-
82-
# Folder config file
83-
[Dd]esktop.ini
84-
85-
# Recycle Bin used on file shares
86-
$RECYCLE.BIN/
106+
### Gradle template
107+
.gradle
108+
**/build/
109+
!src/**/build/
87110

88-
# Windows Installer files
89-
*.cab
90-
*.msi
91-
*.msix
92-
*.msm
93-
*.msp
111+
# Ignore Gradle GUI config
112+
gradle-app.setting
94113

95-
# Windows shortcuts
96-
*.lnk
114+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
115+
!gradle-wrapper.jar
97116

98-
target/
117+
# Avoid ignore Gradle wrappper properties
118+
!gradle-wrapper.properties
99119

100-
pom.xml.tag
101-
pom.xml.releaseBackup
102-
pom.xml.versionsBackup
103-
pom.xml.next
120+
# Cache of project
121+
.gradletasknamecache
104122

105-
release.properties
106-
dependency-reduced-pom.xml
107-
buildNumber.properties
108-
.mvn/timing.properties
109-
.mvn/wrapper/maven-wrapper.jar
110-
.flattened-pom.xml
123+
# Eclipse Gradle plugin generated files
124+
# Eclipse Core
125+
.project
126+
# JDT-specific (Eclipse Java Development Tools)
127+
.classpath
111128

112-
# Common working directory
113-
run/

0 commit comments

Comments
 (0)