-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
33 lines (26 loc) · 927 Bytes
/
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
plugins {
id 'org.springframework.boot' version '3.2.0'
id 'io.spring.dependency-management' version '1.1.3'
id 'java'
}
group = 'com.example'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '17'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation "org.yaml:snakeyaml:2.0"
implementation 'commons-io:commons-io:2.11.0'
implementation 'org.json:json:20231013'
implementation 'org.springframework.boot:spring-boot-starter-webflux'
implementation 'io.opentelemetry:opentelemetry-context:1.31.0'
implementation 'io.opentelemetry:opentelemetry-api:1.31.0'
implementation 'io.opentelemetry:opentelemetry-sdk:1.31.0'
}
test {
useJUnitPlatform()
}