Skip to content

Commit 17ee1c8

Browse files
authored
Merge pull request #89 from bs8841/조백선-sprint3
[조백선] sprint3
2 parents 67da311 + 4701ef2 commit 17ee1c8

File tree

88 files changed

+2164
-1409
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

88 files changed

+2164
-1409
lines changed

.gitattributes

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/gradlew text eol=lf
2+
*.bat text eol=crlf
3+
*.jar binary

.gitignore

Lines changed: 11 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,11 @@
1+
HELP.md
12
.gradle
23
build/
34
!gradle/wrapper/gradle-wrapper.jar
45
!**/src/main/**/build/
56
!**/src/test/**/build/
67

7-
### IntelliJ IDEA ###
8-
.idea
9-
.idea/modules.xml
10-
.idea/jarRepositories.xml
11-
.idea/compiler.xml
12-
.idea/libraries/
13-
*.iws
14-
*.iml
15-
*.ipr
16-
out/
17-
!**/src/main/**/out/
18-
!**/src/test/**/out/
19-
20-
### Eclipse ###
8+
### STS ###
219
.apt_generated
2210
.classpath
2311
.factorypath
@@ -29,6 +17,15 @@ bin/
2917
!**/src/main/**/bin/
3018
!**/src/test/**/bin/
3119

20+
### IntelliJ IDEA ###
21+
.idea
22+
*.iws
23+
*.iml
24+
*.ipr
25+
out/
26+
!**/src/main/**/out/
27+
!**/src/test/**/out/
28+
3229
### NetBeans ###
3330
/nbproject/private/
3431
/nbbuild/
@@ -38,6 +35,3 @@ bin/
3835

3936
### VS Code ###
4037
.vscode/
41-
42-
### Mac OS ###
43-
.DS_Store

build.gradle

Lines changed: 25 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,36 @@
11
plugins {
2-
id 'java'
2+
id 'java'
3+
id 'org.springframework.boot' version '3.4.4'
4+
id 'io.spring.dependency-management' version '1.1.7'
35
}
46

57
group = 'com.sprint.mission'
6-
version = '1.0-SNAPSHOT'
8+
version = '0.0.1-SNAPSHOT'
9+
10+
java {
11+
toolchain {
12+
languageVersion = JavaLanguageVersion.of(17)
13+
}
14+
}
15+
16+
configurations {
17+
compileOnly {
18+
extendsFrom annotationProcessor
19+
}
20+
}
721

822
repositories {
9-
mavenCentral()
23+
mavenCentral()
1024
}
1125

1226
dependencies {
13-
testImplementation platform('org.junit:junit-bom:5.10.0')
14-
testImplementation 'org.junit.jupiter:junit-jupiter'
27+
implementation 'org.springframework.boot:spring-boot-starter-web'
28+
compileOnly 'org.projectlombok:lombok'
29+
annotationProcessor 'org.projectlombok:lombok'
30+
testImplementation 'org.springframework.boot:spring-boot-starter-test'
31+
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
1532
}
1633

17-
test {
18-
useJUnitPlatform()
19-
}
34+
tasks.named('test') {
35+
useJUnitPlatform()
36+
}
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
333 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)