-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
executable file
·118 lines (90 loc) · 3.33 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
plugins {
id 'org.springframework.boot' version '3.3.2'
id 'io.spring.dependency-management' version '1.1.5'
id 'java-library'
id 'jacoco'
}
ext {
springCloudVersion = "2023.0.3"
}
group = 'org.sopt'
version = '0.0.1-SNAPSHOT'
java {
sourceCompatibility = '21'
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-security'
// OpenFeign Client
implementation "io.github.openfeign:feign-okhttp"
implementation "io.github.openfeign:feign-jackson"
implementation 'org.springframework.cloud:spring-cloud-starter-openfeign'
// swagger
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.6.0'
// sentry
implementation 'io.sentry:sentry-spring-boot-starter:6.17.0'
implementation 'io.sentry:sentry-logback:6.17.0'
// QueryDSL
implementation 'com.querydsl:querydsl-jpa:5.0.0:jakarta'
annotationProcessor "com.querydsl:querydsl-apt:5.0.0:jakarta" // 버전 명시
annotationProcessor "jakarta.annotation:jakarta.annotation-api"
annotationProcessor "jakarta.persistence:jakarta.persistence-api"
// lombok
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
testAnnotationProcessor 'org.projectlombok:lombok'
//postgres
runtimeOnly 'org.postgresql:postgresql'
// mapper
implementation 'org.mapstruct:mapstruct:1.5.3.Final'
annotationProcessor 'org.mapstruct:mapstruct-processor:1.5.3.Final'
// jwt
implementation 'io.jsonwebtoken:jjwt-api:0.11.5'
implementation 'io.jsonwebtoken:jjwt-impl:0.11.5'
implementation 'io.jsonwebtoken:jjwt-jackson:0.11.5'
// DB
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
// redis
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
// ImmutableMap
implementation 'com.google.guava:guava:32.0.1-jre'
//hibernate-type52 추가 array type을 위해
implementation 'io.hypersistence:hypersistence-utils-hibernate-63:3.8.2'
implementation 'org.springframework.boot:spring-boot-starter-validation'
// aws-s3
implementation 'org.springframework.cloud:spring-cloud-starter-aws:2.2.6.RELEASE'
// retry
implementation 'org.springframework.retry:spring-retry:2.0.6'
// test
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.springframework.security:spring-security-test'
implementation 'com.google.code.gson:gson:2.10.1'
testImplementation 'org.mockito:mockito-core:5.5.0'
testImplementation 'org.mockito:mockito-junit-jupiter:5.5.0'
implementation 'net.bytebuddy:byte-buddy:1.14.15'
implementation 'org.objenesis:objenesis:3.4'
// slack
implementation 'com.slack.api:slack-api-client:1.30.0'
//config-server
implementation 'org.springframework.cloud:spring-cloud-starter-config'
implementation 'org.springframework.boot:spring-boot-starter-actuator'
}
tasks.named('test') {
useJUnitPlatform()
}
test {
exclude '**/*RepositoryTest.*'
}
dependencyManagement {
imports {
mavenBom "org.springframework.cloud:spring-cloud-dependencies:$springCloudVersion"
}
}