Skip to content

Commit 5800f40

Browse files
committed
upgrade jackson
1 parent 7ad1337 commit 5800f40

File tree

2 files changed

+8
-9
lines changed

2 files changed

+8
-9
lines changed

pom.xml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@
1515

1616
<properties>
1717
<commons-io.version>2.7</commons-io.version>
18-
<jackson-databind.version>2.13.4.1</jackson-databind.version>
19-
<jackson-datatype.version>2.13.4</jackson-datatype.version>
18+
<jackson.version>2.14.2</jackson.version>
2019
<jacoco.version>0.8.7</jacoco.version>
2120
<jflat.version>1.3.8</jflat.version>
2221
<junit.version>[4.13.1,)</junit.version>
@@ -52,19 +51,19 @@
5251
<dependency>
5352
<groupId>com.fasterxml.jackson.core</groupId>
5453
<artifactId>jackson-databind</artifactId>
55-
<version>${jackson-databind.version}</version>
54+
<version>${jackson.version}</version>
55+
</dependency>
56+
<dependency>
57+
<groupId>com.fasterxml.jackson.datatype</groupId>
58+
<artifactId>jackson-datatype-jsr310</artifactId>
59+
<version>${jackson.version}</version>
5660
</dependency>
5761
<dependency>
5862
<groupId>org.projectlombok</groupId>
5963
<artifactId>lombok</artifactId>
6064
<version>${lombok.version}</version>
6165
<scope>provided</scope>
6266
</dependency>
63-
<dependency>
64-
<groupId>com.fasterxml.jackson.datatype</groupId>
65-
<artifactId>jackson-datatype-jsr310</artifactId>
66-
<version>${jackson-datatype.version}</version>
67-
</dependency>
6867
<dependency>
6968
<groupId>org.slf4j</groupId>
7069
<artifactId>slf4j-api</artifactId>

src/test/java/com/tecacet/finance/service/calendar/EnricoHolidayServiceTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public class EnricoHolidayServiceTest {
2121
@Test
2222
public void getSupportedCountries() throws IOException {
2323
List<HolidaySupport> countries = holidayService.getSupportedCountries();
24-
assertEquals(54, countries.size());
24+
assertEquals(55, countries.size());
2525
HolidaySupport holidaySupport = countries.get(1);
2626
Country country = holidaySupport.getCountry();
2727
assertEquals("aus", country.getCountryCode());

0 commit comments

Comments
 (0)