Skip to content

Commit

Permalink
Update Jackson to 2.16.1
Browse files Browse the repository at this point in the history
Fixes an error that occurs when pretty-printing any FHIR resource to
JSON.  The root cause is a dependency conflict between Spring Boot 3.2.0
and HAPI 7.0.0.  See HAPI issue #5736:

hapifhir/hapi-fhir#5736
  • Loading branch information
smailliwcs committed Mar 5, 2024
1 parent f15bc22 commit e716020
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
<maven.compiler.target>17</maven.compiler.target>
<cqf-fhir.version>3.0.0</cqf-fhir.version>
<hapi-fhir.version>7.0.0</hapi-fhir.version>
<jackson.version>2.16.1</jackson.version>
<spring-boot.version>3.2.0</spring-boot.version>
</properties>

Expand All @@ -33,6 +34,14 @@

<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.fasterxml.jackson</groupId>
<artifactId>jackson-bom</artifactId>
<version>${jackson.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
Expand Down

0 comments on commit e716020

Please sign in to comment.