@@ -37,6 +37,8 @@ configurations {
37
37
integrationTest211 { extendsFrom integrationTestBase }
38
38
integrationTest212 { extendsFrom integrationTestBase }
39
39
integrationTest213 { extendsFrom integrationTestBase }
40
+ integrationTest214 { extendsFrom integrationTestBase }
41
+ integrationTest215 { extendsFrom integrationTestBase }
40
42
}
41
43
42
44
String jacksonCore = ' com.fasterxml.jackson.core:jackson-core:'
@@ -46,9 +48,9 @@ String junit = 'junit:junit:4.13.2'
46
48
String mongoDbJavaDriver = ' org.mongodb:mongo-java-driver:3.12.12'
47
49
48
50
dependencies {
49
- implementation jacksonCore + ' 2.13.0 '
50
- implementation jacksonAnnotations + ' 2.13.0 '
51
- implementation jacksonDatabind + ' 2.13.0 '
51
+ implementation jacksonCore + ' 2.15.2 '
52
+ implementation jacksonAnnotations + ' 2.15.2 '
53
+ implementation jacksonDatabind + ' 2.15.2 '
52
54
53
55
testImplementation junit
54
56
testImplementation mongoDbJavaDriver
@@ -107,6 +109,14 @@ dependencies {
107
109
integrationTest213 jacksonCore + ' 2.13.0'
108
110
integrationTest213 jacksonAnnotations + ' 2.13.0'
109
111
integrationTest213 jacksonDatabind + ' 2.13.0'
112
+
113
+ integrationTest214 jacksonCore + ' 2.14.3'
114
+ integrationTest214 jacksonAnnotations + ' 2.14.3'
115
+ integrationTest214 jacksonDatabind + ' 2.14.3'
116
+
117
+ integrationTest215 jacksonCore + ' 2.15.2'
118
+ integrationTest215 jacksonAnnotations + ' 2.15.2'
119
+ integrationTest215 jacksonDatabind + ' 2.15.2'
110
120
}
111
121
112
122
jar {
@@ -201,11 +211,20 @@ task doIntegrationTest213(type: Test) {
201
211
classpath = sourceSets. test. output + sourceSets. main. output + configurations. integrationTest213
202
212
}
203
213
214
+ task doIntegrationTest214 (type : Test ) {
215
+ classpath = sourceSets. test. output + sourceSets. main. output + configurations. integrationTest214
216
+ }
217
+
218
+ task doIntegrationTest215 (type : Test ) {
219
+ classpath = sourceSets. test. output + sourceSets. main. output + configurations. integrationTest215
220
+ }
221
+
204
222
task integrationTest (dependsOn : [ doIntegrationTest21, doIntegrationTest22,
205
223
doIntegrationTest23, doIntegrationTest24, doIntegrationTest25,
206
224
doIntegrationTest26, doIntegrationTest27, doIntegrationTest28,
207
225
doIntegrationTest29, doIntegrationTest210, doIntegrationTest211,
208
- doIntegrationTest212, doIntegrationTest213 ])
226
+ doIntegrationTest212, doIntegrationTest213, doIntegrationTest214,
227
+ doIntegrationTest215])
209
228
210
229
check. dependsOn integrationTest
211
230
0 commit comments