-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
41 lines (32 loc) · 1.2 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
plugins {
id 'java'
}
group 'com.learnjava'
version '1.0-SNAPSHOT'
sourceCompatibility = 11
repositories {
mavenCentral()
}
dependencies {
//lombok
compileOnly 'org.projectlombok:lombok:1.18.24'
annotationProcessor 'org.projectlombok:lombok:1.18.24'
// StopWatch
implementation('org.apache.commons:commons-lang3:3.12.0')
//webclient dependencies
implementation 'org.springframework:spring-webflux:5.3.23'
implementation 'io.projectreactor.netty:reactor-netty:1.0.23'
//jackson dependencies
implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.4.2'
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.4'
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.4'
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.13.4'
implementation 'com.fasterxml.jackson.core:jackson-core:2.13.4'
//junit5-dependencies
testImplementation('org.junit.jupiter:junit-jupiter:5.9.0')
testImplementation group: 'org.mockito', name: 'mockito-core', version: '3.2.4'
testImplementation group: 'org.mockito', name: 'mockito-junit-jupiter', version: '3.2.4'
}
test {
useJUnitPlatform()
}