-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
61 lines (47 loc) · 1.66 KB
/
Copy pathbuild.gradle
File metadata and controls
61 lines (47 loc) · 1.66 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
plugins {
id 'java'
id 'org.springframework.boot' version '3.4.3'
id 'io.spring.dependency-management' version '1.1.7'
}
group = 'com.lgcns'
version = '0.0.1-SNAPSHOT'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
repositories {
mavenCentral()
}
ext {
set('springCloudVersion', "2024.0.0")
}
dependencies {
// Circuit Breaker (장애 감지 & 트래픽 차단)
implementation 'org.springframework.cloud:spring-cloud-starter-circuitbreaker-reactor-resilience4j'
// Spring Boot WebFlux (Gateway는 WebFlux 기반)
implementation 'org.springframework.boot:spring-boot-starter-webflux'
// Spring Cloud Gateway
implementation 'org.springframework.cloud:spring-cloud-starter-gateway'
// Eureka Client (서비스 디스커버리)
implementation 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-client'
// // Actuator (모니터링)
implementation 'org.springframework.boot:spring-boot-starter-actuator'
// Lombok
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
// Jakarta Servlet API 추가 (혹시 모를 의존성 문제 해결)
implementation 'jakarta.servlet:jakarta.servlet-api:6.0.0'
// boot, junit
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
}
dependencyManagement {
imports {
// mavenBom "org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}"
mavenBom("org.springframework.cloud:spring-cloud-dependencies:2024.0.0")
}
}
tasks.named('test') {
useJUnitPlatform()
}