summaryrefslogtreecommitdiff
path: root/build.gradle.kts
diff options
context:
space:
mode:
authorPaul-Christian Volkmer2026-06-02 13:59:37 +0200
committerPaul-Christian Volkmer2026-06-02 13:59:37 +0200
commit7a77574432e79469fa704ac1167e3a3c9a3745d1 (patch)
tree49998d3cdffa5a501b94d4de3cb8f8313a3ff39d /build.gradle.kts
parent401864411103b04b44c7ba264558716822517c2b (diff)
feat!: change data model librarychange-data-model
Since DNPM Datenmodell 2.1 changes from time to time, use a (mostly) autogenerated library based on JSON schema.
Diffstat (limited to 'build.gradle.kts')
-rw-r--r--build.gradle.kts4
1 files changed, 2 insertions, 2 deletions
diff --git a/build.gradle.kts b/build.gradle.kts
index c029e58..164baf8 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -21,7 +21,7 @@ group = "dev.dnpm"
version = "0.16.1" // x-release-please-version
// Additional versions
-val mtbDtoVersion by extra("0.3.0")
+val mtbModelVersion by extra("0.4.2")
val hapiFhirVersion by extra("8.8.1")
val apacheCxfVersion by extra("4.1.5")
val springModulithVersion by extra("2.0.5")
@@ -81,7 +81,7 @@ dependencies {
implementation("org.flywaydb:flyway-mysql")
implementation("commons-codec:commons-codec")
implementation("io.projectreactor.kotlin:reactor-kotlin-extensions")
- implementation("dev.pcvolkmer.mv64e:mtb-dto:${mtbDtoVersion}")
+ implementation("dev.pcvolkmer.mv64e:mtb-model:${mtbModelVersion}")
implementation("ca.uhn.hapi.fhir:hapi-fhir-base:${hapiFhirVersion}")
implementation("ca.uhn.hapi.fhir:hapi-fhir-structures-r4:${hapiFhirVersion}")
implementation("org.apache.httpcomponents.client5:httpclient5")