Skip to content

Commit de31e88

Browse files
author
Kim
committed
Initial commit
0 parents  commit de31e88

File tree

9 files changed

+1309
-0
lines changed

9 files changed

+1309
-0
lines changed

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto

.gitignore

Lines changed: 225 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,225 @@
1+
# Compiled class file
2+
*.class
3+
4+
# Log file
5+
*.log
6+
7+
# BlueJ files
8+
*.ctxt
9+
10+
# Mobile Tools for Java (J2ME)
11+
.mtj.tmp/
12+
13+
# Package Files #
14+
*.jar
15+
*.war
16+
*.nar
17+
*.ear
18+
*.zip
19+
*.tar.gz
20+
*.rar
21+
22+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
23+
hs_err_pid*
24+
replay_pid*
25+
/target/
26+
27+
### Eclipse ###
28+
.metadata
29+
bin/
30+
tmp/
31+
*.tmp
32+
*.bak
33+
*.swp
34+
*~.nib
35+
local.properties
36+
.settings/
37+
.loadpath
38+
.recommenders
39+
40+
# External tool builders
41+
.externalToolBuilders/
42+
43+
# Locally stored "Eclipse launch configurations"
44+
*.launch
45+
46+
# PyDev specific (Python IDE for Eclipse)
47+
*.pydevproject
48+
49+
# CDT-specific (C/C++ Development Tooling)
50+
.cproject
51+
52+
# CDT- autotools
53+
.autotools
54+
55+
# Java annotation processor (APT)
56+
.factorypath
57+
58+
# PDT-specific (PHP Development Tools)
59+
.buildpath
60+
61+
# sbteclipse plugin
62+
.target
63+
64+
# Tern plugin
65+
.tern-project
66+
67+
# TeXlipse plugin
68+
.texlipse
69+
70+
# STS (Spring Tool Suite)
71+
.springBeans
72+
73+
# Code Recommenders
74+
.recommenders/
75+
76+
# Annotation Processing
77+
.apt_generated/
78+
.apt_generated_test/
79+
80+
# Scala IDE specific (Scala & Java development for Eclipse)
81+
.cache-main
82+
.scala_dependencies
83+
.worksheet
84+
85+
# Uncomment this line if you wish to ignore the project description file.
86+
# Typically, this file would be tracked if it contains build/dependency configurations:
87+
#.project
88+
89+
### Eclipse Patch ###
90+
# Spring Boot Tooling
91+
.sts4-cache/
92+
93+
### Java ###
94+
# Compiled class file
95+
*.class
96+
97+
# Log file
98+
*.log
99+
100+
# BlueJ files
101+
*.ctxt
102+
103+
# Mobile Tools for Java (J2ME)
104+
.mtj.tmp/
105+
106+
# Package Files #
107+
*.jar
108+
*.war
109+
*.nar
110+
*.ear
111+
*.zip
112+
*.tar.gz
113+
*.rar
114+
115+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
116+
hs_err_pid*
117+
replay_pid*
118+
119+
### macOS ###
120+
# General
121+
.DS_Store
122+
.AppleDouble
123+
.LSOverride
124+
125+
# Icon must end with two \r
126+
Icon
127+
128+
129+
# Thumbnails
130+
._*
131+
132+
# Files that might appear in the root of a volume
133+
.DocumentRevisions-V100
134+
.fseventsd
135+
.Spotlight-V100
136+
.TemporaryItems
137+
.Trashes
138+
.VolumeIcon.icns
139+
.com.apple.timemachine.donotpresent
140+
141+
# Directories potentially created on remote AFP share
142+
.AppleDB
143+
.AppleDesktop
144+
Network Trash Folder
145+
Temporary Items
146+
.apdisk
147+
148+
### macOS Patch ###
149+
# iCloud generated files
150+
*.icloud
151+
152+
### Maven ###
153+
target/
154+
pom.xml.tag
155+
pom.xml.releaseBackup
156+
pom.xml.versionsBackup
157+
pom.xml.next
158+
release.properties
159+
dependency-reduced-pom.xml
160+
buildNumber.properties
161+
.mvn/timing.properties
162+
# https://github.com/takari/maven-wrapper#usage-without-binary-jar
163+
.mvn/wrapper/maven-wrapper.jar
164+
165+
# Eclipse m2e generated files
166+
# Eclipse Core
167+
.project
168+
# JDT-specific (Eclipse Java Development Tools)
169+
.classpath
170+
171+
### Sonar ###
172+
#Sonar generated dir
173+
/.sonar/
174+
175+
### Windows ###
176+
# Windows thumbnail cache files
177+
Thumbs.db
178+
Thumbs.db:encryptable
179+
ehthumbs.db
180+
ehthumbs_vista.db
181+
182+
# Dump file
183+
*.stackdump
184+
185+
# Folder config file
186+
[Dd]esktop.ini
187+
188+
# Recycle Bin used on file shares
189+
$RECYCLE.BIN/
190+
191+
# Windows Installer files
192+
*.cab
193+
*.msi
194+
*.msix
195+
*.msm
196+
*.msp
197+
198+
# Windows shortcuts
199+
*.lnk
200+
201+
### Gradle ###
202+
.gradle
203+
**/build/
204+
!src/**/build/
205+
206+
# Ignore Gradle GUI config
207+
gradle-app.setting
208+
209+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
210+
!gradle-wrapper.jar
211+
212+
# Avoid ignore Gradle wrappper properties
213+
!gradle-wrapper.properties
214+
215+
# Cache of project
216+
.gradletasknamecache
217+
218+
# Eclipse Gradle plugin generated files
219+
# Eclipse Core
220+
# JDT-specific (Eclipse Java Development Tools)
221+
222+
### Gradle Patch ###
223+
# Java heap dump
224+
*.hprof
225+
*.prefs

0 commit comments

Comments
 (0)