Skip to content

Commit 8c6bed1

Browse files
author
jianx.cao001
committed
更新相关文件
1 parent 81fa410 commit 8c6bed1

File tree

3 files changed

+180
-1736
lines changed

3 files changed

+180
-1736
lines changed

.gitignore

Lines changed: 180 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,184 @@
1-
#Java class files
2-
*.class
1+
# Created by .ignore support plugin (hsz.mobi)
2+
### Eclipse template
3+
.metadata
4+
bin/
5+
tmp/
6+
*.tmp
7+
*.bak
8+
*.swp
9+
*~.nib
10+
local.properties
11+
.settings/
12+
.loadpath
13+
.recommenders
314

4-
#target files
5-
*/target/*
15+
# External tool builders
16+
.externalToolBuilders/
617

7-
# Intellij
8-
*.iml
9-
*/*.iml
18+
# Locally stored "Eclipse launch configurations"
19+
*.launch
1020

11-
#some local files
12-
*/.settings/*
13-
*/.idea/*
14-
.idea/*
21+
# PyDev specific (Python IDE for Eclipse)
22+
*.pydevproject
23+
24+
# CDT-specific (C/C++ Development Tooling)
25+
.cproject
26+
27+
# CDT- autotools
28+
.autotools
29+
30+
# Java annotation processor (APT)
31+
.factorypath
32+
33+
# PDT-specific (PHP Development Tools)
34+
.buildpath
35+
36+
# sbteclipse plugin
37+
.target
38+
39+
# Tern plugin
40+
.tern-project
41+
42+
# TeXlipse plugin
43+
.texlipse
44+
45+
# STS (Spring Tool Suite)
46+
.springBeans
47+
48+
# Code Recommenders
49+
.recommenders/
50+
51+
# Annotation Processing
52+
.apt_generated/
53+
54+
# Scala IDE specific (Scala & Java development for Eclipse)
55+
.cache-main
56+
.scala_dependencies
57+
.worksheet
58+
59+
### JetBrains template
60+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
61+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
62+
63+
# User-specific stuff
64+
.idea/**/workspace.xml
65+
.idea/**/tasks.xml
66+
.idea/**/usage.statistics.xml
67+
.idea/**/dictionaries
68+
.idea/**/shelf
69+
70+
# Generated files
71+
.idea/**/contentModel.xml
72+
73+
# Sensitive or high-churn files
74+
.idea/**/dataSources/
75+
.idea/**/dataSources.ids
76+
.idea/**/dataSources.local.xml
77+
.idea/**/sqlDataSources.xml
78+
.idea/**/dynamic.xml
79+
.idea/**/uiDesigner.xml
80+
.idea/**/dbnavigator.xml
81+
82+
# Gradle
83+
.idea/**/gradle.xml
84+
.idea/**/libraries
85+
86+
# Gradle and Maven with auto-import
87+
# When using Gradle or Maven with auto-import, you should exclude module files,
88+
# since they will be recreated, and may cause churn. Uncomment if using
89+
# auto-import.
90+
# .idea/modules.xml
91+
# .idea/*.iml
92+
# .idea/modules
93+
# *.iml
94+
# *.ipr
95+
96+
# CMake
97+
cmake-build-*/
98+
99+
# Mongo Explorer plugin
100+
.idea/**/mongoSettings.xml
101+
102+
# File-based project format
103+
*.iws
104+
105+
# IntelliJ
106+
out/
107+
108+
# mpeltonen/sbt-idea plugin
109+
.idea_modules/
110+
111+
# JIRA plugin
112+
atlassian-ide-plugin.xml
113+
114+
# Cursive Clojure plugin
115+
.idea/replstate.xml
116+
117+
# Crashlytics plugin (for Android Studio and IntelliJ)
118+
com_crashlytics_export_strings.xml
119+
crashlytics.properties
120+
crashlytics-build.properties
121+
fabric.properties
122+
123+
# Editor-based Rest Client
124+
.idea/httpRequests
125+
126+
# Android studio 3.1+ serialized cache file
127+
.idea/caches/build_file_checksums.ser
128+
129+
### Maven template
130+
target/
131+
pom.xml.tag
132+
pom.xml.releaseBackup
133+
pom.xml.versionsBackup
134+
pom.xml.next
135+
release.properties
136+
dependency-reduced-pom.xml
137+
buildNumber.properties
138+
.mvn/timing.properties
139+
.mvn/wrapper/maven-wrapper.jar
140+
141+
### Gradle template
142+
.gradle
143+
/build/
144+
145+
# Ignore Gradle GUI config
146+
gradle-app.setting
147+
148+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
149+
!gradle-wrapper.jar
150+
151+
# Cache of project
152+
.gradletasknamecache
153+
154+
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
155+
# gradle/wrapper/gradle-wrapper.properties
156+
157+
### macOS template
158+
# General
159+
.DS_Store
160+
.AppleDouble
161+
.LSOverride
162+
163+
# Icon must end with two \r
164+
Icon
165+
166+
# Thumbnails
167+
._*
168+
169+
# Files that might appear in the root of a volume
170+
.DocumentRevisions-V100
171+
.fseventsd
172+
.Spotlight-V100
173+
.TemporaryItems
174+
.Trashes
175+
.VolumeIcon.icns
176+
.com.apple.timemachine.donotpresent
177+
178+
# Directories potentially created on remote AFP share
179+
.AppleDB
180+
.AppleDesktop
181+
Network Trash Folder
182+
Temporary Items
183+
.apdisk
15184

.idea/modules.xml

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

0 commit comments

Comments
 (0)