@@ -9,7 +9,6 @@ plugins {
9
9
10
10
sourceCompatibility = JavaVersion . VERSION_1_8
11
11
targetCompatibility = JavaVersion . VERSION_1_8
12
-
13
12
group = GROUP
14
13
version = VERSION_NAME
15
14
@@ -18,22 +17,29 @@ repositories {
18
17
}
19
18
20
19
sourceSets {
21
- main. java. srcDirs = [' lib/src/main/java' , ' lib/generated/openapi/src/main/java ' ]
20
+ main. java. srcDirs = [' lib/src/main/java' ]
22
21
test. java. srcDirs = [' lib/src/test' ]
23
22
}
24
23
25
24
dependencies {
26
- implementation ' io.swagger:swagger-annotations:1.6.8'
25
+ implementation " com.fasterxml.jackson.core:jackson-core:2.17.+"
26
+ implementation " com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.17.+"
27
+ implementation " com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.17.+"
28
+ implementation " com.fasterxml.jackson.core:jackson-annotations:2.17.+"
29
+ implementation " com.fasterxml.jackson.core:jackson-databind:2.17.+"
30
+ implementation " com.squareup.okhttp3:okhttp:4.12.0"
27
31
implementation " com.google.code.findbugs:jsr305:3.0.2"
28
- implementation ' com.squareup.okhttp3:okhttp:4.12.0'
29
- implementation ' com.squareup.okhttp3:logging-interceptor:4.12.0'
30
- implementation ' com.google.code.gson:gson:2.9.1'
31
- implementation ' io.gsonfire:gson-fire:1.9.0'
32
- implementation ' jakarta.ws.rs:jakarta.ws.rs-api:2.1.6'
33
- implementation ' org.openapitools:jackson-databind-nullable:0.2.6'
34
- implementation group : ' org.apache.commons' , name : ' commons-lang3' , version : ' 3.12.0'
35
- implementation ' javax.annotation:javax.annotation-api:1.3.2'
32
+
33
+
36
34
testImplementation ' junit:junit:4.13.1'
35
+ testImplementation ' com.github.tomakehurst:wiremock-jre8:2.35.1'
36
+ testImplementation " org.assertj:assertj-core:3.24.2"
37
+
38
+ compileOnly ' org.projectlombok:lombok:1.18.36'
39
+ annotationProcessor ' org.projectlombok:lombok:1.18.36'
40
+
41
+ testCompileOnly ' org.projectlombok:lombok:1.18.36'
42
+ testAnnotationProcessor ' org.projectlombok:lombok:1.18.36'
37
43
}
38
44
39
45
jar {
0 commit comments