-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.gradle
94 lines (71 loc) ยท 2.77 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
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
plugins {
id 'java'
id 'org.springframework.boot' version '3.3.3'
id 'io.spring.dependency-management' version '1.1.6'
}
group = 'dbdr'
version = '0.0.1-SNAPSHOT'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
// Spring Boot ๊ธฐ๋ณธ ๋ผ์ด๋ธ๋ฌ๋ฆฌ
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-validation'
// ๋ฐ์ดํฐ๋ฒ ์ด์ค
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'mysql:mysql-connector-java:8.0.33' // MySQL ์์กด์ฑ ์ถ๊ฐ (MySQL JDBC ๋๋ผ์ด๋ฒ)
runtimeOnly 'com.h2database:h2'
// ๋ณด์
implementation 'org.springframework.boot:spring-boot-starter-oauth2-client'
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' // JSON ์ฒ๋ฆฌ์ฉ ๋ผ์ด๋ธ๋ฌ๋ฆฌ
// Lombok
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
// SpringDoc OpenAPI (Swagger UI ํฌํจ)
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.1.0'
// ํ
์คํธ ๋ผ์ด๋ธ๋ฌ๋ฆฌ
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testRuntimeOnly 'com.h2database:h2' // H2๋ ํ
์คํธ ํ๊ฒฝ์์ ์ฃผ๋ก ์ฌ์ฉ
// Line-messaging-api ๋ผ์ด๋ธ๋ฌ๋ฆฌ
implementation 'com.linecorp.bot:line-bot-spring-boot:4.7.0'
// MapStruct
implementation 'org.mapstruct:mapstruct:1.4.2.Final'
annotationProcessor 'org.mapstruct:mapstruct-processor:1.4.2.Final'
//POI
implementation 'org.apache.poi:poi-ooxml:5.3.0'
implementation 'org.apache.commons:commons-compress:1.27.1'
// Redis
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
// Amazon SQS
implementation platform("io.awspring.cloud:spring-cloud-aws-dependencies:3.0.1")
implementation 'io.awspring.cloud:spring-cloud-aws-starter-sqs'
// CoolSMS
implementation 'net.nurigo:sdk:4.3.0'
// AWS S3
implementation 'org.springframework.cloud:spring-cloud-starter-aws:2.2.6.RELEASE'
// Naver Clova OCR API
implementation 'org.springframework.boot:spring-boot-starter-webflux' // WebClient ์ฌ์ฉ์ ์ํ ๋ผ์ด๋ธ๋ฌ๋ฆฌ
// Health check
implementation 'org.springframework.boot:spring-boot-starter-actuator'
}
tasks.named('test') {
useJUnitPlatform()
}
tasks.withType(JavaCompile) {
options.compilerArgs += ['-parameters']
}