|
5 | 5 | <parent> |
6 | 6 | <groupId>org.springframework.boot</groupId> |
7 | 7 | <artifactId>spring-boot-starter-parent</artifactId> |
8 | | - <version>2.7.5</version> |
| 8 | + <version>2.7.12</version> |
9 | 9 | <relativePath/> <!-- lookup parent from repository --> |
10 | 10 | </parent> |
11 | 11 | <groupId>uk.nhs.england</groupId> |
12 | 12 | <artifactId>IOPS-FHIR-Validation-Service</artifactId> |
13 | | - <version>2.10.0</version> |
| 13 | + <version>6.8.0</version> |
14 | 14 | <name>IOPS-FHIR-Validation-Service</name> |
15 | 15 | <description>HAPI FHIR Validator using Spring Boot</description> |
16 | 16 |
|
17 | 17 | <properties> |
18 | 18 | <java.version>1.8</java.version> |
19 | 19 | <kotlin.version>1.6.21</kotlin.version> |
20 | | - <fhir.version>6.6.0</fhir.version> |
| 20 | + <fhir.version>6.8.0</fhir.version> |
21 | 21 | <swagger_version>2.1.12</swagger_version> |
22 | 22 | <parser_version>2.0.30</parser_version> |
| 23 | + <jackson_databind_version>2.15.2</jackson_databind_version> |
23 | 24 | </properties> |
24 | 25 |
|
25 | 26 | <dependencies> |
|
52 | 53 | <groupId>org.jetbrains.kotlin</groupId> |
53 | 54 | <artifactId>kotlin-stdlib-jdk8</artifactId> |
54 | 55 | </dependency> |
| 56 | + <dependency> |
| 57 | + <groupId>com.fasterxml.jackson.module</groupId> |
| 58 | + <artifactId>jackson-module-kotlin</artifactId> |
| 59 | + <version>${jackson_databind_version}</version> |
| 60 | + </dependency> |
| 61 | + <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core --> |
| 62 | + <dependency> |
| 63 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 64 | + <artifactId>jackson-core</artifactId> |
| 65 | + <version>${jackson_databind_version}</version> |
| 66 | + </dependency> |
55 | 67 |
|
56 | 68 | <dependency> |
57 | 69 | <groupId>org.springframework.boot</groupId> |
|
0 commit comments