-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
64 lines (49 loc) · 1.82 KB
/
build.gradle
File metadata and controls
64 lines (49 loc) · 1.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
plugins {
id 'java'
id 'org.springframework.boot' version '3.2.0'
id 'io.spring.dependency-management' version '1.1.4'
}
group = 'com.moa'
version = '0.0.1-SNAPSHOT'
java {
sourceCompatibility = '17'
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
// ✨ WebSocket 지원 (추가)
implementation 'org.springframework.boot:spring-boot-starter-websocket'
// Excel 읽기
implementation 'org.apache.poi:poi:5.2.5'
implementation 'org.apache.poi:poi-ooxml:5.2.5'
testImplementation 'org.projectlombok:lombok:1.18.28'
// Lombok
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
// Configuration Processor
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testCompileOnly 'org.projectlombok:lombok'
testAnnotationProcessor 'org.projectlombok:lombok'
// swagger
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.3.0'
// build.gradle
implementation 'software.amazon.awssdk:s3:2.21.0'
//spring-dotenv 라이브러리
implementation 'me.paulschwarz:spring-dotenv:4.0.0'
// ✨ JSON 처리 (Spring Boot에 이미 포함되어 있지만 명시적으로 추가)
// implementation 'com.fasterxml.jackson.core:jackson-databind'
// implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310'
// → Spring Boot Starter Web에 이미 포함되어 있어서 주석 처리했습니다.
// 만약 버전 충돌이 있다면 주석을 해제하고 버전을 명시하세요.
}
tasks.named('test') {
useJUnitPlatform()
}