-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
38 lines (29 loc) · 877 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
34
35
36
37
38
plugins {
id 'java'
id "io.freefair.lombok" version "8.3"
}
java {
sourceCompatibility = JavaVersion.VERSION_17
}
group 'mynghn'
version '0.1-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
implementation 'info.picocli:picocli:4.7.5'
annotationProcessor 'info.picocli:picocli-codegen:4.7.5'
implementation 'io.github.openfeign:feign-core:12.5'
implementation 'io.github.openfeign:feign-gson:12.5'
implementation 'com.google.code.gson:gson:2.10.1'
implementation 'com.github.rholder:guava-retrying:2.0.0'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
testImplementation 'org.mockito:mockito-core:5.6.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
}
compileJava {
options.compilerArgs += ["-Aproject=${project.group}/${project.name}"]
}
test {
useJUnitPlatform()
}