-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
68 lines (56 loc) · 2.21 KB
/
build.gradle
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
plugins {
id 'java'
id 'org.springframework.boot' version '3.3.3'
id 'io.spring.dependency-management' version '1.1.6'
}
group = 'com.chzzkGamble'
version = '0.0.1-SNAPSHOT'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-websocket'
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'org.springframework.data:spring-data-jpa:3.3.2'
implementation 'org.springframework:spring-webflux:6.1.12'
implementation 'com.google.code.gson:gson'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
compileOnly 'org.projectlombok:lombok'
runtimeOnly 'com.h2database:h2'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
implementation 'com.opencsv:opencsv:5.9'
// AWS SDK for Java 2.x BOM 추가
implementation platform('software.amazon.awssdk:bom:2.20.0')
// 필요한 AWS 서비스 클라이언트 추가 (예: S3, SSM)
implementation 'software.amazon.awssdk:s3'
implementation 'software.amazon.awssdk:ssm'
implementation 'com.coveo:spring-boot-parameter-store-integration:2.0.0'
// 유튜브 관련 의존성
implementation 'com.google.api-client:google-api-client'
implementation 'com.google.oauth-client:google-oauth-client-jetty:1.23.0'
implementation 'com.google.apis:google-api-services-youtube:v3-rev222-1.25.0'
// html escape 문자 디코딩 용
implementation 'org.apache.commons:commons-text'
// https://mvnrepository.com/artifact/org.redisson/redisson
implementation 'org.redisson:redisson:3.23.3'
implementation 'mysql:mysql-connector-java:8.0.33'
// cache
implementation 'org.springframework.boot:spring-boot-starter-cache'
implementation 'com.github.ben-manes.caffeine:caffeine'
}
tasks.named('test') {
useJUnitPlatform()
}