-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
127 lines (99 loc) · 3.96 KB
/
build.gradle
File metadata and controls
127 lines (99 loc) · 3.96 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
plugins {
id 'java'
id 'org.springframework.boot' version '3.4.5'
id 'io.spring.dependency-management' version '1.1.7'
}
group = 'com.example'
version = '0.0.1-SNAPSHOT'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
maven {
name = "TarsosDSP repository"
url = "https://mvn.0110.be/releases"
}
}
dependencies {
// 기본 Spring Boot
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-web'
compileOnly 'org.projectlombok:lombok'
runtimeOnly 'com.mysql:mysql-connector-j'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
// 회원가입 & 로그인 위해 추가
implementation 'org.springframework.boot:spring-boot-starter-validation'
// spring-security
implementation 'org.springframework.boot:spring-boot-starter-security'
// JJWT 라이브러리 (JWT 구현체) 3종 세트
implementation group: 'io.jsonwebtoken', name: 'jjwt-api', version: '0.11.2' // 인터페이스 정의
runtimeOnly group: 'io.jsonwebtoken', name: 'jjwt-impl', version: '0.11.2' // 실제 구현체
runtimeOnly group: 'io.jsonwebtoken', name: 'jjwt-jackson', version: '0.11.2' // JSON 변환기 (Claims ↔ JSON 직렬화용)
// 이메일 인증
implementation 'org.springframework.boot:spring-boot-starter-mail'
// 테스트
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
// DB
runtimeOnly 'com.mysql:mysql-connector-j'
// MongoDB (Google Speech-to-Text 로그 저장용)
implementation('org.springframework.boot:spring-boot-starter-data-mongodb') {
exclude group: 'org.mongodb', module: 'mongodb-driver-sync'
exclude group: 'org.mongodb', module: 'mongodb-driver-core'
exclude group: 'org.mongodb', module: 'bson'
}
implementation 'org.mongodb:mongodb-driver-sync:5.3.1'
implementation 'org.mongodb:mongodb-driver-core:5.3.1'
implementation 'org.mongodb:bson:5.3.1'
// JWT (로그인 토큰)
implementation 'io.jsonwebtoken:jjwt-api:0.11.2'
runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.11.2'
runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.11.2'
// 문서화 (Swagger → SpringDoc)
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.7.0'
// WebSocket
implementation 'org.springframework.boot:spring-boot-starter-websocket'
implementation 'org.apache.tomcat.embed:tomcat-embed-websocket'
// Twilio
implementation 'com.twilio.sdk:twilio:10.7.2'
implementation 'com.google.protobuf:protobuf-java:4.31.1'
// Google Cloud Speech-to-Text
implementation 'com.google.cloud:google-cloud-speech:4.39.0'
// JSON 파싱
implementation 'org.json:json:20231013'
// Lombok
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
// Google Cloud Vertex AI - Gemini 2.5 flash
implementation platform('com.google.cloud:libraries-bom:26.34.0')
implementation 'com.google.cloud:google-cloud-vertexai'
// Jackson JSR310 Datatype (Java 8 Date/Time API support)
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310'
// Elasticsearch Java API Client
implementation 'co.elastic.clients:elasticsearch-java:8.13.0'
implementation 'org.elasticsearch.client:elasticsearch-rest-client:8.13.0'
// JSON 직렬화용 Jackson
implementation 'jakarta.json:jakarta.json-api:2.1.1'
implementation 'org.glassfish:jakarta.json:2.0.1'
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310'
// WebFlux 의존성 추가
implementation 'org.springframework.boot:spring-boot-starter-webflux'
// TarsosDSP (멀티모달)
implementation 'be.tarsos.dsp:core:2.5'
implementation 'be.tarsos.dsp:jvm:2.5'
// SOLAPI - CoolSMS (SMS 발송)
implementation 'com.solapi:sdk:1.0.3'
}
tasks.named('test') {
useJUnitPlatform()
}