Skip to content

Commit 05a93a8

Browse files
authored
Merge pull request #258 from k01zero/part2-김경린
[김경린] sprint5
2 parents d65d70e + 8d3b6b9 commit 05a93a8

File tree

155 files changed

+6761
-11
lines changed

Some content is hidden

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

155 files changed

+6761
-11
lines changed

.github/img.png

59.5 KB

.github/img_1.png

76.9 KB

.github/img_2.png

41.4 KB

.github/img_3.png

79 KB

.github/pull-request-template.md

+97-11

.gitignore

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
.gradle
2+
build/
3+
!gradle/wrapper/gradle-wrapper.jar
4+
!**/src/main/**/build/
5+
!**/src/test/**/build/
6+
7+
### IntelliJ IDEA ###
8+
.idea/modules.xml
9+
.idea/jarRepositories.xml
10+
.idea/compiler.xml
11+
.idea/libraries/
12+
*.iws
13+
*.iml
14+
*.ipr
15+
out/
16+
!**/src/main/**/out/
17+
!**/src/test/**/out/
18+
19+
### Eclipse ###
20+
.apt_generated
21+
.classpath
22+
.factorypath
23+
.project
24+
.settings
25+
.springBeans
26+
.sts4-cache
27+
bin/
28+
!**/src/main/**/bin/
29+
!**/src/test/**/bin/
30+
31+
### NetBeans ###
32+
/nbproject/private/
33+
/nbbuild/
34+
/dist/
35+
/nbdist/
36+
/.nb-gradle/
37+
38+
### VS Code ###
39+
.vscode/
40+
41+
### Mac OS ###
42+
.DS_Store
43+
44+
45+
...
46+
.idea
47+
...

build.gradle

+62
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
plugins {
2+
id 'java'
3+
id 'application' // application 플러그인 추가
4+
id 'org.springframework.boot' version '3.3.6'
5+
id 'io.spring.dependency-management' version '1.1.7'
6+
}
7+
8+
group = 'com.sprint.mission'
9+
version = '1.0-SNAPSHOT'
10+
11+
12+
java {
13+
// sourceCompatibility = JavaVersion.VERSION_17
14+
// targetCompatibility = JavaVersion.VERSION_17
15+
toolchain {
16+
languageVersion = JavaLanguageVersion.of(17)
17+
}
18+
}
19+
20+
configurations {
21+
compileOnly {
22+
extendsFrom annotationProcessor
23+
}
24+
}
25+
26+
27+
repositories {
28+
mavenCentral()
29+
}
30+
31+
dependencies {
32+
implementation platform('org.junit:junit-bom:5.10.0') // JUnit BOM 사용
33+
implementation 'org.junit.jupiter:junit-jupiter' // JUnit API를 전체적으로 포함
34+
testImplementation platform('org.junit:junit-bom:5.10.0')
35+
testImplementation 'org.junit.jupiter:junit-jupiter'
36+
//
37+
implementation "org.mockito:mockito-core:4.6.1"
38+
//
39+
implementation 'org.springframework.boot:spring-boot-starter-web'
40+
testImplementation 'org.springframework.boot:spring-boot-starter-test'
41+
//
42+
compileOnly 'org.projectlombok:lombok'
43+
annotationProcessor 'org.projectlombok:lombok'
44+
//
45+
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
46+
// springdoc-openapi 라이브러리 추가
47+
implementation("org.springdoc:springdoc-openapi-starter-webmvc-ui:2.0.2")
48+
}
49+
50+
tasks.named('test') {
51+
useJUnitPlatform()
52+
}
53+
54+
application {
55+
// mainClass = 'com.sprint.mission.discodeit.JavaApplication' // Main 클래스 경로 설정
56+
mainClass = 'com.sprint.mission.discodeit.DiscodeitApplication'
57+
}
58+
59+
tasks.withType(JavaCompile) {
60+
options.encoding = 'UTF-8'
61+
}
62+

error-log/img.png

20.1 KB

error-log/img_4.png

56.8 KB

error-log/img_5.png

41.6 KB

error-log/파일업로드하기.md

+34
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

gradle/wrapper/gradle-wrapper.jar

59.3 KB
Binary file not shown.
+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#Wed Jan 08 15:27:48 KST 2025
2+
distributionBase=GRADLE_USER_HOME
3+
distributionPath=wrapper/dists
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10-bin.zip
5+
zipStoreBase=GRADLE_USER_HOME
6+
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)