Skip to content

Commit

Permalink
Update spring-boot and fix issues in dependency management
Browse files Browse the repository at this point in the history
  • Loading branch information
Thopap committed Sep 27, 2024
1 parent a9d3a12 commit 32a5282
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.3.3</version>
<version>3.3.4</version>
<relativePath/><!-- lookup parent from repository -->
</parent>
<groupId>org.openehealth.app</groupId>
Expand All @@ -16,24 +16,26 @@
<description>IHE XDS.b Registry using a FHIR server as backend</description>
<properties>
<java.version>21</java.version>
<spring.boot.version>3.3.4</spring.boot.version>
<ipf.version>5.0-m1</ipf.version>
<mockserver.version>5.15.0</mockserver.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>${spring.boot.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.openehealth.ipf</groupId>
<artifactId>ipf-dependencies</artifactId>
<type>pom</type>
<scope>import</scope>
<version>${ipf.version}</version>
</dependency>
<!-- force-upgrade to 6.1.13 fixes ClassNotFound org.springframework.web.client.NoOpResponseErrorHandler -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>6.1.13</version>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
Expand Down

0 comments on commit 32a5282

Please sign in to comment.