-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
55 lines (40 loc) · 1.96 KB
/
build.gradle.kts
File metadata and controls
55 lines (40 loc) · 1.96 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
dependencies {
// add-ons
implementation(project(":modules:jpa"))
implementation(project(":modules:redis"))
implementation(project(":modules:kafka"))
implementation(project(":supports:jackson"))
implementation(project(":supports:logging"))
implementation(project(":supports:monitoring"))
// web
implementation("org.springframework.boot:spring-boot-starter-web")
implementation("org.springframework.boot:spring-boot-starter-actuator")
implementation("org.springdoc:springdoc-openapi-starter-webmvc-ui:${project.properties["springDocOpenApiVersion"]}")
// Resilience4j (Spring Boot 3.x 기준)
implementation("io.github.resilience4j:resilience4j-spring-boot3")
// AOP
implementation("org.springframework.boot:spring-boot-starter-aop")
//Micrometer Prometheus
implementation("io.micrometer:micrometer-registry-prometheus")
//Spring Cloud OpenFeign
implementation("org.springframework.cloud:spring-cloud-starter-openfeign")
// querydsl
annotationProcessor("com.querydsl:querydsl-apt::jakarta")
annotationProcessor("jakarta.persistence:jakarta.persistence-api")
annotationProcessor("jakarta.annotation:jakarta.annotation-api")
// test-fixtures
testImplementation(testFixtures(project(":modules:jpa")))
testImplementation(testFixtures(project(":modules:redis")))
// Resilience4j (Spring Boot 3.x 기준)
implementation("io.github.resilience4j:resilience4j-spring-boot3")
// AOP
implementation("org.springframework.boot:spring-boot-starter-aop")
// actuator
implementation("org.springframework.boot:spring-boot-starter-actuator")
//Micrometer Prometheus
implementation("io.micrometer:micrometer-registry-prometheus")
//Spring Cloud OpenFeign
implementation("org.springframework.cloud:spring-cloud-starter-openfeign")
//Spring Cloud CircuitBreaker
implementation("org.springframework.cloud:spring-cloud-starter-circuitbreaker-resilience4j")
}