Skip to content

Commit 6ff2f9f

Browse files
authored
고생하셨습니다.
🎉 PR 머지 완료! 🎉
1 parent 13c25ff commit 6ff2f9f

File tree

20 files changed

+1403
-1334
lines changed

20 files changed

+1403
-1334
lines changed

.gitignore

Lines changed: 37 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,37 @@
1-
HELP.md
2-
.gradle
3-
build/
4-
!gradle/wrapper/gradle-wrapper.jar
5-
!**/src/main/**/build/
6-
!**/src/test/**/build/
7-
8-
### STS ###
9-
.apt_generated
10-
.classpath
11-
.factorypath
12-
.project
13-
.settings
14-
.springBeans
15-
.sts4-cache
16-
bin/
17-
!**/src/main/**/bin/
18-
!**/src/test/**/bin/
19-
20-
### IntelliJ IDEA ###
21-
.idea
22-
*.iws
23-
*.iml
24-
*.ipr
25-
out/
26-
!**/src/main/**/out/
27-
!**/src/test/**/out/
28-
29-
### NetBeans ###
30-
/nbproject/private/
31-
/nbbuild/
32-
/dist/
33-
/nbdist/
34-
/.nb-gradle/
35-
36-
### VS Code ###
37-
.vscode/
1+
HELP.md
2+
.gradle
3+
build/
4+
!gradle/wrapper/gradle-wrapper.jar
5+
!**/src/main/**/build/
6+
!**/src/test/**/build/
7+
8+
### STS ###
9+
.apt_generated
10+
.classpath
11+
.factorypath
12+
.project
13+
.settings
14+
.springBeans
15+
.sts4-cache
16+
bin/
17+
!**/src/main/**/bin/
18+
!**/src/test/**/bin/
19+
20+
### IntelliJ IDEA ###
21+
.idea
22+
*.iws
23+
*.iml
24+
*.ipr
25+
out/
26+
!**/src/main/**/out/
27+
!**/src/test/**/out/
28+
29+
### NetBeans ###
30+
/nbproject/private/
31+
/nbbuild/
32+
/dist/
33+
/nbdist/
34+
/.nb-gradle/
35+
36+
### VS Code ###
37+
.vscode/

LICENSE

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
MIT License
2-
3-
Copyright (c) 2023 next-step
4-
5-
Permission is hereby granted, free of charge, to any person obtaining a copy
6-
of this software and associated documentation files (the "Software"), to deal
7-
in the Software without restriction, including without limitation the rights
8-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9-
copies of the Software, and to permit persons to whom the Software is
10-
furnished to do so, subject to the following conditions:
11-
12-
The above copyright notice and this permission notice shall be included in all
13-
copies or substantial portions of the Software.
14-
15-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21-
SOFTWARE.
1+
MIT License
2+
3+
Copyright (c) 2023 next-step
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

build.gradle

Lines changed: 28 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,28 @@
1-
plugins {
2-
id 'org.springframework.boot' version '3.1.0'
3-
id 'io.spring.dependency-management' version '1.1.0'
4-
id 'java'
5-
}
6-
7-
group = 'nextstep'
8-
version = '0.0.1-SNAPSHOT'
9-
sourceCompatibility = '17'
10-
11-
repositories {
12-
mavenCentral()
13-
}
14-
15-
dependencies {
16-
implementation 'org.springframework.boot:spring-boot-starter'
17-
testImplementation 'org.springframework.boot:spring-boot-starter-test'
18-
testImplementation 'io.rest-assured:rest-assured:5.3.1'
19-
}
20-
21-
test {
22-
useJUnitPlatform()
23-
}
1+
plugins {
2+
id 'org.springframework.boot' version '3.1.0'
3+
id 'io.spring.dependency-management' version '1.1.0'
4+
id 'java'
5+
}
6+
7+
group = 'nextstep'
8+
version = '0.0.1-SNAPSHOT'
9+
sourceCompatibility = '17'
10+
11+
repositories {
12+
mavenCentral()
13+
}
14+
15+
dependencies {
16+
implementation 'org.springframework.boot:spring-boot-starter'
17+
implementation 'org.springframework.boot:spring-boot-starter-web'
18+
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
19+
20+
developmentOnly 'org.springframework.boot:spring-boot-devtools'
21+
22+
testImplementation 'org.springframework.boot:spring-boot-starter-test'
23+
testImplementation 'io.rest-assured:rest-assured:5.3.1'
24+
}
25+
26+
test {
27+
useJUnitPlatform()
28+
}
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
distributionBase=GRADLE_USER_HOME
2-
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-bin.zip
4-
zipStoreBase=GRADLE_USER_HOME
5-
zipStorePath=wrapper/dists
1+
distributionBase=GRADLE_USER_HOME
2+
distributionPath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-bin.zip
4+
zipStoreBase=GRADLE_USER_HOME
5+
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)