Skip to content

Commit 115f8c3

Browse files
losipiukwendigo
authored andcommitted
Remove vestigial jackson version definition
Defined in airbase
1 parent d353c60 commit 115f8c3

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

json/src/test/java/io/airlift/json/TestJsonCodec.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -314,17 +314,17 @@ public void testRecordSerialization()
314314
new MyRecordAdditionalGetter("my value", true, true),
315315
"""
316316
{
317-
"additionalProperty" : "additional property value",
318317
"condition" : true,
319318
"foo" : "my value",
320-
"isCool" : true
319+
"isCool" : true,
320+
"additionalProperty" : "additional property value"
321321
}\
322322
""");
323323

324324
assertThat(JsonCodec.jsonCodec(LegacyRecordAdditionalGetter.class).toJson(new LegacyRecordAdditionalGetter("my value"))).isEqualTo("""
325325
{
326-
"bar" : "there is no bar field in the record",
327326
"foo" : "not really a foo value",
327+
"bar" : "there is no bar field in the record",
328328
"safe" : false
329329
}\
330330
""");

pom.xml

-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,6 @@
9494
<dep.modernizer.version>2.7.0</dep.modernizer.version>
9595
<dep.jersey.version>3.1.10</dep.jersey.version>
9696
<dep.jjwt.version>0.12.6</dep.jjwt.version>
97-
<dep.jackson.version>2.17.2</dep.jackson.version>
9897
</properties>
9998

10099
<dependencyManagement>

0 commit comments

Comments
 (0)