-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
120 lines (92 loc) · 3.82 KB
/
build.gradle
File metadata and controls
120 lines (92 loc) · 3.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
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
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.9.25'
id 'org.jetbrains.kotlin.plugin.spring' version '1.9.25'
id 'org.springframework.boot' version '3.4.1'
id 'io.spring.dependency-management' version '1.1.7'
id 'org.jetbrains.kotlin.plugin.jpa' version '1.9.25'
id 'org.jetbrains.kotlin.kapt' version '1.9.25'
}
group = 'com.b'
version = '0.0.1-SNAPSHOT'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
repositories {
mavenCentral()
}
dependencies {
// aws s3
implementation("software.amazon.awssdk:s3:2.20.35") // 최신 버전 사용
implementation 'org.springframework.cloud:spring-cloud-starter-aws:2.2.6.RELEASE'
//oauth
implementation("org.springframework.boot:spring-boot-starter-oauth2-client")
// QueryDSL
implementation 'com.querydsl:querydsl-jpa:5.0.0:jakarta'
kapt 'com.querydsl:querydsl-apt:5.0.0:jakarta'
kapt "jakarta.annotation:jakarta.annotation-api"
kapt "jakarta.persistence:jakarta.persistence-api"
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-validation'
// implementation 'org.apache.httpcomponents.client5:httpclient5:5.2.1'
runtimeOnly 'com.mysql:mysql-connector-j'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.springframework.security:spring-security-test'
// TestContainers
testImplementation 'org.springframework.boot:spring-boot-testcontainers'
testImplementation 'org.testcontainers:testcontainers:1.19.3'
testImplementation 'org.testcontainers:junit-jupiter:1.19.3'
testImplementation 'org.testcontainers:mysql:1.19.3'
testImplementation 'org.testcontainers:rabbitmq:1.19.3'
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.7.0'
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
implementation 'org.springframework.boot:spring-boot-starter-mail'
implementation 'io.jsonwebtoken:jjwt-api:0.11.5'
implementation 'io.jsonwebtoken:jjwt-impl:0.11.5'
implementation 'io.jsonwebtoken:jjwt-jackson:0.11.5'
// Apache POI for Excel (HSSF, XLS)
implementation 'org.apache.poi:poi:5.2.3'
// Apache POI for Excel (XSSF, XLSX - Excel 2007 or later)
implementation 'org.apache.poi:poi-ooxml:5.2.3'
implementation 'com.opencsv:opencsv:5.9'
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.jetbrains.kotlin:kotlin-reflect'
implementation 'com.fasterxml.jackson.module:jackson-module-kotlin'
// webclient
implementation 'org.springframework.boot:spring-boot-starter-webflux'
// shedLock (분산 스케쥴링)
implementation 'net.javacrumbs.shedlock:shedlock-spring:5.9.0'
implementation 'net.javacrumbs.shedlock:shedlock-provider-jdbc-template:5.9.0'
implementation 'software.amazon.awssdk:s3'
// rabbitmq
implementation 'org.springframework.boot:spring-boot-starter-amqp'
// firebase
implementation 'com.google.firebase:firebase-admin:9.1.1'
implementation 'com.squareup.okhttp3:okhttp:4.11.0'
// test: Mockito
testImplementation 'org.mockito:mockito-core:4.1.0'
testImplementation 'org.mockito:mockito-inline:4.1.0'
testImplementation 'org.mockito.kotlin:mockito-kotlin:4.1.0'
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.0'
}
kotlin {
compilerOptions {
freeCompilerArgs.addAll '-Xjsr305=strict'
}
}
tasks.named('test') {
useJUnitPlatform()
}
sourceSets {
main {
java {
srcDir "build/generated/source/kapt/main"
}
}
}
clean {
delete file('build/generated')
}