-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
26 lines (22 loc) · 813 Bytes
/
build.gradle
File metadata and controls
26 lines (22 loc) · 813 Bytes
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
plugins {
id 'java'
}
group 'org.example'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.2'
implementation 'org.springframework.boot:spring-boot-starter:3.0.4'
implementation 'org.springframework.boot:spring-boot-starter-web:3.0.4'
testImplementation 'org.springframework.boot:spring-boot-starter-test:3.0.4'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.14.2'
implementation 'org.springframework.boot:spring-boot-starter-validation:3.0.4'
implementation 'org.apache.httpcomponents:httpclient:4.5.14'
implementation 'org.apache.httpcomponents.client5:httpclient5:5.2.1'
}
test {
useJUnitPlatform()
}