File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed
plugins/core/core/src/software/aws/toolkits/core Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ detekt = "1.23.6"
9
9
intellijExt = " 1.1.8"
10
10
intellijGradle = " 2.0.0-beta9"
11
11
intellijRemoteRobot = " 0.11.22"
12
- jackson = " 2.17.2 "
12
+ jackson = " 2.16.1 "
13
13
jacoco = " 0.8.12"
14
14
jgit = " 6.5.0.202303070854-r"
15
15
junit4 = " 4.13.2"
@@ -31,7 +31,7 @@ testRetry = "1.5.10"
31
31
slf4j = " 2.0.9"
32
32
sshd = " 2.12.1"
33
33
undercouch-download = " 5.2.1"
34
- wiremock = " 3.9.0 "
34
+ wiremock = " 3.3.1 "
35
35
zjsonpatch = " 0.4.16"
36
36
37
37
[libraries ]
Original file line number Diff line number Diff line change @@ -91,6 +91,7 @@ object LambdaSampleEventJsonValidator : RemoteResolveParser {
91
91
private val LOG = LoggerFactory .getLogger(LambdaSampleEventJsonValidator ::class .java)
92
92
93
93
private val mapper = jacksonObjectMapper()
94
+ .disable(MapperFeature .CAN_OVERRIDE_ACCESS_MODIFIERS )
94
95
.disable(MapperFeature .ALLOW_FINAL_FIELDS_AS_MUTATORS )
95
96
.disable(DeserializationFeature .FAIL_ON_UNKNOWN_PROPERTIES )
96
97
.enable(JsonParser .Feature .ALLOW_COMMENTS )
Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ object PartitionParser {
39
39
private val LOG = LoggerFactory .getLogger(PartitionParser ::class .java)
40
40
41
41
private val mapper = jacksonObjectMapper()
42
+ .disable(MapperFeature .CAN_OVERRIDE_ACCESS_MODIFIERS )
42
43
.disable(MapperFeature .ALLOW_FINAL_FIELDS_AS_MUTATORS )
43
44
.disable(DeserializationFeature .FAIL_ON_UNKNOWN_PROPERTIES )
44
45
.enable(JsonParser .Feature .ALLOW_COMMENTS )
You can’t perform that action at this time.
0 commit comments