Skip to content

Commit 1410fff

Browse files
committed
프로젝트 세팅 완료
1 parent 9cdd0e2 commit 1410fff

File tree

12 files changed

+525
-1
lines changed

12 files changed

+525
-1
lines changed

.gitignore

+175
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,175 @@
1+
2+
# Created by https://www.toptal.com/developers/gitignore/api/macos,java,gradle,intellij+all
3+
# Edit at https://www.toptal.com/developers/gitignore?templates=macos,java,gradle,intellij+all
4+
5+
### Intellij+all ###
6+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
7+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
8+
9+
# User-specific stuff
10+
.idea/**/workspace.xml
11+
.idea/**/tasks.xml
12+
.idea/**/usage.statistics.xml
13+
.idea/**/dictionaries
14+
.idea/**/shelf
15+
16+
# AWS User-specific
17+
.idea/**/aws.xml
18+
19+
# Generated files
20+
.idea/**/contentModel.xml
21+
22+
# Sensitive or high-churn files
23+
.idea/**/dataSources/
24+
.idea/**/dataSources.ids
25+
.idea/**/dataSources.local.xml
26+
.idea/**/sqlDataSources.xml
27+
.idea/**/dynamic.xml
28+
.idea/**/uiDesigner.xml
29+
.idea/**/dbnavigator.xml
30+
31+
# Gradle
32+
.idea/**/gradle.xml
33+
.idea/**/libraries
34+
35+
# Gradle and Maven with auto-import
36+
# When using Gradle or Maven with auto-import, you should exclude module files,
37+
# since they will be recreated, and may cause churn. Uncomment if using
38+
# auto-import.
39+
# .idea/artifacts
40+
# .idea/compiler.xml
41+
# .idea/jarRepositories.xml
42+
# .idea/modules.xml
43+
# .idea/*.iml
44+
# .idea/modules
45+
# *.iml
46+
# *.ipr
47+
48+
# CMake
49+
cmake-build-*/
50+
51+
# Mongo Explorer plugin
52+
.idea/**/mongoSettings.xml
53+
54+
# File-based project format
55+
*.iws
56+
57+
# IntelliJ
58+
out/
59+
60+
# mpeltonen/sbt-idea plugin
61+
.idea_modules/
62+
63+
# JIRA plugin
64+
atlassian-ide-plugin.xml
65+
66+
# Cursive Clojure plugin
67+
.idea/replstate.xml
68+
69+
# SonarLint plugin
70+
.idea/sonarlint/
71+
72+
# Crashlytics plugin (for Android Studio and IntelliJ)
73+
com_crashlytics_export_strings.xml
74+
crashlytics.properties
75+
crashlytics-build.properties
76+
fabric.properties
77+
78+
# Editor-based Rest Client
79+
.idea/httpRequests
80+
81+
# Android studio 3.1+ serialized cache file
82+
.idea/caches/build_file_checksums.ser
83+
84+
### Intellij+all Patch ###
85+
# Ignore everything but code style settings and run configurations
86+
# that are supposed to be shared within teams.
87+
88+
.idea/*
89+
90+
!.idea/codeStyles
91+
!.idea/runConfigurations
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+
### Gradle ###
153+
.gradle
154+
**/build/
155+
!src/**/build/
156+
157+
# Ignore Gradle GUI config
158+
gradle-app.setting
159+
160+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
161+
!gradle-wrapper.jar
162+
163+
# Avoid ignore Gradle wrappper properties
164+
!gradle-wrapper.properties
165+
166+
# Cache of project
167+
.gradletasknamecache
168+
169+
# Eclipse Gradle plugin generated files
170+
# Eclipse Core
171+
.project
172+
# JDT-specific (Eclipse Java Development Tools)
173+
.classpath
174+
175+
# End of https://www.toptal.com/developers/gitignore/api/macos,java,gradle,intellij+all

README.md

+48-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,49 @@
11
# design-pattern
2-
디자인 패턴 예제 저장소
2+
3+
## 1 week
4+
5+
* Flyweight - 재원님
6+
* Abstract Factory - 희찬님
7+
8+
## 2 week
9+
10+
* Strategy - 지훈님
11+
* State - 동건님
12+
13+
## 3 week
14+
15+
* Template Method - 하림님
16+
* Proxy - 지훈님
17+
18+
## 4 week
19+
20+
* Adapter - 희찬님
21+
* Bridge - 재원님
22+
23+
## 5 week
24+
25+
* Composite - 하림님
26+
* Decorator - 동건님
27+
28+
## 6 week
29+
30+
* Facade - 재원님
31+
* Prototype - 희찬님
32+
33+
## 7 week
34+
35+
* Command - 동건님
36+
* Mediator - 하림님
37+
38+
## 8 week
39+
40+
* Memento - 지훈님
41+
* Observer - 동건님
42+
* Visitor - 재원님
43+
44+
45+
## git rule
46+
47+
* 커밋: 한글로 자유롭게
48+
* 브랜치 종류: feature, refactor, docs, fix
49+
* 커밋 컨벤션: feature/abstract-factory - 추상 팩토리 패턴 정리 완료 (#1)

build.gradle

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
plugins {
2+
id 'java'
3+
}
4+
5+
group 'org.example'
6+
version '1.0-SNAPSHOT'
7+
8+
repositories {
9+
mavenCentral()
10+
}
11+
12+
dependencies {
13+
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
14+
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
15+
}
16+
17+
test {
18+
useJUnitPlatform()
19+
}

gradle/wrapper/gradle-wrapper.jar

58.1 KB
Binary file not shown.
+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
distributionBase=GRADLE_USER_HOME
2+
distributionPath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.1-bin.zip
4+
zipStoreBase=GRADLE_USER_HOME
5+
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)