-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.gradle
More file actions
119 lines (90 loc) · 3.55 KB
/
build.gradle
File metadata and controls
119 lines (90 loc) · 3.55 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
plugins {
id 'java'
id 'org.springframework.boot' version '3.2.1'
id 'io.spring.dependency-management' version '1.1.4'
id 'checkstyle'
}
group = 'com'
version = '0.0.1-SNAPSHOT'
compileJava.options.encoding = 'UTF-8'
compileTestJava.options.encoding = 'UTF-8'
java {
sourceCompatibility = '17'
}
def querydslVersion = '5.0.0'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-data-mongodb'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-validation'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
// swagger 추가
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.6.0'
// MySQL
runtimeOnly 'com.mysql:mysql-connector-j'
// mapstruct 추가
implementation 'org.mapstruct:mapstruct:1.5.5.Final'
annotationProcessor 'org.mapstruct:mapstruct-processor:1.5.5.Final'
testAnnotationProcessor "org.mapstruct:mapstruct-processor:1.5.5.Final"
// jwt 추가
implementation 'com.auth0:java-jwt:4.5.0'
// 카카오톡 추가
implementation('org.springframework.boot:spring-boot-starter-oauth2-client') {
exclude group: 'org.springframework.security', module: 'spring-security-core'
exclude group: 'org.springframework.security', module: 'spring-security-config'
exclude group: 'org.springframework.security', module: 'spring-security-web'
}
// 레디스 추가
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
implementation 'org.springframework.boot:spring-boot-starter-webflux'
//S3 추가
implementation 'software.amazon.awssdk:s3:2.20.7'
//cloudfront 추가
implementation 'software.amazon.awssdk:cloudfront:2.20.12'
//route53추가
implementation 'software.amazon.awssdk:route53:2.20.12'
implementation 'software.amazon.awssdk:core:2.20.2'
implementation 'software.amazon.awssdk:regions:2.20.2'
//SES 추가
implementation 'software.amazon.awssdk:ses:2.27.8'
//DynamoDB 추가
implementation 'software.amazon.awssdk:dynamodb:2.28.10'
implementation 'software.amazon.awssdk:dynamodb-enhanced:2.28.10'
//EventBridgeScheduler 추가
implementation 'software.amazon.awssdk:scheduler:2.27.24'
//HTML parser Jsoup
implementation 'org.jsoup:jsoup:1.17.2'
//Lambda 추가
implementation 'software.amazon.awssdk:lambda:2.26.4'
runtimeOnly 'com.h2database:h2'
// spring cache
implementation 'org.springframework.boot:spring-boot-starter-cache'
// redisson
implementation 'org.redisson:redisson:3.45.1'
// QueryDsl
implementation "com.querydsl:querydsl-jpa:${querydslVersion}:jakarta"
annotationProcessor "com.querydsl:querydsl-apt:${querydslVersion}:jakarta"
annotationProcessor "jakarta.annotation:jakarta.annotation-api"
annotationProcessor "jakarta.persistence:jakarta.persistence-api"
// monitoring
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation 'io.micrometer:micrometer-registry-prometheus'
}
tasks.named('test') {
useJUnitPlatform()
}
checkstyle {
maxWarnings = 0
configFile = file("${rootDir}/naver-checkstyle-rules.xml")
toolVersion = "10.12.4"
}