-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
105 lines (81 loc) · 3.49 KB
/
build.gradle
File metadata and controls
105 lines (81 loc) · 3.49 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
plugins {
id 'java'
id 'org.springframework.boot' version '3.5.4'
id 'io.spring.dependency-management' version '1.1.7'
id 'org.jetbrains.kotlin.jvm'
}
group = 'com.refit'
version = '0.0.1-SNAPSHOT'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(21)
}
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.mybatis.spring.boot:mybatis-spring-boot-starter:3.0.5'
compileOnly 'org.projectlombok:lombok'
developmentOnly 'org.springframework.boot:spring-boot-devtools'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.mybatis.spring.boot:mybatis-spring-boot-starter-test:3.0.5'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
implementation 'com.oracle.database.jdbc:ojdbc8:21.18.0.0'
implementation 'com.oracle.database.security:oraclepki:21.18.0.0'
implementation 'com.oracle.database.security:osdt_cert:21.18.0.0'
implementation 'com.oracle.database.security:osdt_core:21.18.0.0'
// 스프링 시큐리티 사용
implementation 'org.springframework.boot:spring-boot-starter-security'
// JWT 사용
implementation 'io.jsonwebtoken:jjwt-api:0.11.5'
runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.11.5'
runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.11.5'
// 비밀번호 암호화 사용
implementation 'org.springframework.security:spring-security-crypto'
// Redis 사용
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
// 유효성 검증
implementation 'org.springframework.boot:spring-boot-starter-validation'
// 비동기 처리
implementation 'org.springframework.boot:spring-boot-starter-webflux'
// JSON 직렬화/역직렬화
// implementation 'com.fasterxml.jackson.core:jackson-databind'
implementation "com.fasterxml.jackson.core:jackson-annotations:2.19.2"
implementation "com.fasterxml.jackson.core:jackson-core:2.19.2"
implementation "com.fasterxml.jackson.core:jackson-databind:2.19.2"
implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.19.2"
// 외부 API 호출
implementation 'org.apache.httpcomponents.client5:httpclient5'
// AWS SDK v2 (S3)
implementation 'software.amazon.awssdk:s3:2.25.0'
// 파일 확장자 추출 유틸
implementation 'commons-io:commons-io:2.15.1'
// 스웨거
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.8.6'
// Testcontainers (GenericContainer 사용)
testImplementation 'org.testcontainers:junit-jupiter:1.20.1'
testImplementation 'org.testcontainers:testcontainers:1.20.1'
// Spring AI
implementation 'org.springframework.ai:spring-ai-openai-spring-boot-starter:1.0.0-M6'
implementation 'org.apache.commons:commons-lang3:3.13.0'
// Firebase
implementation("com.google.firebase:firebase-admin:9.3.0")
// 웹소켓
implementation 'org.springframework.boot:spring-boot-starter-websocket'
implementation 'org.springframework:spring-messaging'
implementation 'com.drewnoakes:metadata-extractor:2.18.0'
// shedlock
implementation 'net.javacrumbs.shedlock:shedlock-spring:5.15.0'
implementation 'net.javacrumbs.shedlock:shedlock-provider-jdbc-template:5.15.0'
}
tasks.named('test') {
useJUnitPlatform()
}