Skip to content

Commit 6d3d675

Browse files
committed
add: basic spring boot project
0 parents  commit 6d3d675

7 files changed

Lines changed: 598 additions & 0 deletions

File tree

.gitignore

Lines changed: 152 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,152 @@
1+
2+
# Created by https://www.gitignore.io/api/java,maven,macos,linux,intellij+all
3+
4+
### Intellij+all ###
5+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
6+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
7+
8+
# User-specific stuff:
9+
.idea/**/workspace.xml
10+
.idea/**/tasks.xml
11+
.idea/dictionaries
12+
13+
# Sensitive or high-churn files:
14+
.idea/**/dataSources/
15+
.idea/**/dataSources.ids
16+
.idea/**/dataSources.xml
17+
.idea/**/dataSources.local.xml
18+
.idea/**/sqlDataSources.xml
19+
.idea/**/dynamic.xml
20+
.idea/**/uiDesigner.xml
21+
22+
# Gradle:
23+
.idea/**/gradle.xml
24+
.idea/**/libraries
25+
26+
# CMake
27+
cmake-build-debug/
28+
29+
# Mongo Explorer plugin:
30+
.idea/**/mongoSettings.xml
31+
32+
## File-based project format:
33+
*.iws
34+
35+
## Plugin-specific files:
36+
37+
# IntelliJ
38+
/out/
39+
40+
# mpeltonen/sbt-idea plugin
41+
.idea_modules/
42+
43+
# JIRA plugin
44+
atlassian-ide-plugin.xml
45+
46+
# Cursive Clojure plugin
47+
.idea/replstate.xml
48+
49+
# Ruby plugin and RubyMine
50+
/.rakeTasks
51+
52+
# Crashlytics plugin (for Android Studio and IntelliJ)
53+
com_crashlytics_export_strings.xml
54+
crashlytics.properties
55+
crashlytics-build.properties
56+
fabric.properties
57+
58+
### Intellij+all Patch ###
59+
# Ignores the whole .idea folder and all .iml files
60+
# See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360
61+
62+
.idea/
63+
64+
# Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
65+
66+
*.iml
67+
modules.xml
68+
.idea/misc.xml
69+
*.ipr
70+
71+
### Java ###
72+
# Compiled class file
73+
*.class
74+
75+
# Log file
76+
*.log
77+
78+
# BlueJ files
79+
*.ctxt
80+
81+
# Mobile Tools for Java (J2ME)
82+
.mtj.tmp/
83+
84+
# Package Files #
85+
*.jar
86+
*.war
87+
*.ear
88+
*.zip
89+
*.tar.gz
90+
*.rar
91+
92+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
93+
hs_err_pid*
94+
95+
### Linux ###
96+
*~
97+
98+
# temporary files which can be created if a process still has a handle open of a deleted file
99+
.fuse_hidden*
100+
101+
# KDE directory preferences
102+
.directory
103+
104+
# Linux trash folder which might appear on any partition or disk
105+
.Trash-*
106+
107+
# .nfs files are created when an open file is removed but is still being accessed
108+
.nfs*
109+
110+
### macOS ###
111+
*.DS_Store
112+
.AppleDouble
113+
.LSOverride
114+
115+
# Icon must end with two \r
116+
Icon
117+
118+
# Thumbnails
119+
._*
120+
121+
# Files that might appear in the root of a volume
122+
.DocumentRevisions-V100
123+
.fseventsd
124+
.Spotlight-V100
125+
.TemporaryItems
126+
.Trashes
127+
.VolumeIcon.icns
128+
.com.apple.timemachine.donotpresent
129+
130+
# Directories potentially created on remote AFP share
131+
.AppleDB
132+
.AppleDesktop
133+
Network Trash Folder
134+
Temporary Items
135+
.apdisk
136+
137+
### Maven ###
138+
target/
139+
pom.xml.tag
140+
pom.xml.releaseBackup
141+
pom.xml.versionsBackup
142+
pom.xml.next
143+
release.properties
144+
dependency-reduced-pom.xml
145+
buildNumber.properties
146+
.mvn/timing.properties
147+
148+
# Avoid ignoring Maven wrapper jar file (.jar files are usually ignored)
149+
!/.mvn/wrapper/maven-wrapper.jar
150+
151+
152+
# End of https://www.gitignore.io/api/java,maven,macos,linux,intellij+all

mvnw

Lines changed: 225 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)