From b85135aa372a0f654d7e3f67b42471ae0c720123 Mon Sep 17 00:00:00 2001 From: Lloyd McKenzie Date: Thu, 14 Nov 2024 21:12:21 -0700 Subject: [PATCH 1/6] Fix IG dependsOn.reason conversion --- .../conv40_50/resources40_50/ImplementationGuide40_50.java | 7 +++++++ .../conv43_50/resources43_50/ImplementationGuide43_50.java | 7 +++++++ 2 files changed, 14 insertions(+) diff --git a/org.hl7.fhir.convertors/src/main/java/org/hl7/fhir/convertors/conv40_50/resources40_50/ImplementationGuide40_50.java b/org.hl7.fhir.convertors/src/main/java/org/hl7/fhir/convertors/conv40_50/resources40_50/ImplementationGuide40_50.java index 6aa82d66a..b087dfb31 100644 --- a/org.hl7.fhir.convertors/src/main/java/org/hl7/fhir/convertors/conv40_50/resources40_50/ImplementationGuide40_50.java +++ b/org.hl7.fhir.convertors/src/main/java/org/hl7/fhir/convertors/conv40_50/resources40_50/ImplementationGuide40_50.java @@ -18,6 +18,7 @@ import org.hl7.fhir.convertors.conv40_50.datatypes40_50.primitive40_50.Url40_50; import org.hl7.fhir.convertors.conv40_50.datatypes40_50.special40_50.Reference40_50; import org.hl7.fhir.exceptions.FHIRException; import org.hl7.fhir.r4.model.Extension; +import org.hl7.fhir.r4.model.MarkdownType; import org.hl7.fhir.r4.model.UrlType; import org.hl7.fhir.r5.model.CanonicalType; import org.hl7.fhir.r5.model.ImplementationGuide; @@ -59,6 +60,7 @@ public class ImplementationGuide40_50 { static final String EXT_IG_DEFINITION_PARAM_URL_EXT = "http://hl7.org/fhir/tools/CodeSystem/ig-parameters"; static final String EXT_IG_DEFINITION_PARAM_URL_BASE = "http://hl7.org/fhir/guide-parameter-code"; static final String EXT_IG_DEFINITION_RESOURCE_PROFILE = "http://hl7.org/fhir/5.0/StructureDefinition/extension-ImplementationGuide.definition.resource.profile"; + static final String EXT_IG_DEPENDSON_REASON = "http://hl7.org/fhir/5.0/StructureDefinition/extension-ImplementationGuide.dependsOn.reason"; public static org.hl7.fhir.r5.model.ImplementationGuide convertImplementationGuide(org.hl7.fhir.r4.model.ImplementationGuide src) throws FHIRException { if (src == null) @@ -187,6 +189,9 @@ public class ImplementationGuide40_50 { tgt.setPackageIdElement(Id40_50.convertId(src.getPackageIdElement())); if (src.hasVersion()) tgt.setVersionElement(String40_50.convertString(src.getVersionElement())); + if (src.hasExtension(EXT_IG_DEPENDSON_REASON)) + tgt.setReasonElement(MarkDown40_50.convertMarkdown((org.hl7.fhir.r4.model.MarkdownType)src.getExtensionByUrl(EXT_IG_DEPENDSON_REASON).getValue())); + tgt.removeExtension(EXT_IG_DEPENDSON_REASON); return tgt; } @@ -201,6 +206,8 @@ public class ImplementationGuide40_50 { tgt.setPackageIdElement(Id40_50.convertId(src.getPackageIdElement())); if (src.hasVersion()) tgt.setVersionElement(String40_50.convertString(src.getVersionElement())); + if (src.hasReason()) + tgt.addExtension(EXT_IG_DEPENDSON_REASON, MarkDown40_50.convertMarkdown(src.getReasonElement())); return tgt; } diff --git a/org.hl7.fhir.convertors/src/main/java/org/hl7/fhir/convertors/conv43_50/resources43_50/ImplementationGuide43_50.java b/org.hl7.fhir.convertors/src/main/java/org/hl7/fhir/convertors/conv43_50/resources43_50/ImplementationGuide43_50.java index 7e6999aee..2ede80c8a 100644 --- a/org.hl7.fhir.convertors/src/main/java/org/hl7/fhir/convertors/conv43_50/resources43_50/ImplementationGuide43_50.java +++ b/org.hl7.fhir.convertors/src/main/java/org/hl7/fhir/convertors/conv43_50/resources43_50/ImplementationGuide43_50.java @@ -4,6 +4,7 @@ import java.util.stream.Collectors; import org.hl7.fhir.convertors.context.ConversionContext43_50; import org.hl7.fhir.convertors.conv40_50.datatypes40_50.primitive40_50.Canonical40_50; +import org.hl7.fhir.convertors.conv40_50.datatypes40_50.primitive40_50.MarkDown40_50; import org.hl7.fhir.convertors.conv43_50.datatypes43_50.general43_50.CodeableConcept43_50; import org.hl7.fhir.convertors.conv43_50.datatypes43_50.metadata43_50.ContactDetail43_50; import org.hl7.fhir.convertors.conv43_50.datatypes43_50.metadata43_50.UsageContext43_50; @@ -55,6 +56,7 @@ public class ImplementationGuide43_50 { static final String EXT_IG_DEFINITION_PARAMETER = "http://hl7.org/fhir/tools/StructureDefinition/ig-parameter"; static final String EXT_IG_DEFINITION_RESOURCE_PROFILE = "http://hl7.org/fhir/5.0/StructureDefinition/extension-ImplementationGuide.definition.resource.profile"; + static final String EXT_IG_DEPENDSON_REASON = "http://hl7.org/fhir/5.0/StructureDefinition/extension-ImplementationGuide.dependsOn.reason"; public static org.hl7.fhir.r5.model.ImplementationGuide convertImplementationGuide(org.hl7.fhir.r4b.model.ImplementationGuide src) throws FHIRException { if (src == null) @@ -183,6 +185,9 @@ public class ImplementationGuide43_50 { tgt.setPackageIdElement(Id43_50.convertId(src.getPackageIdElement())); if (src.hasVersion()) tgt.setVersionElement(String43_50.convertString(src.getVersionElement())); + if (src.hasExtension(EXT_IG_DEPENDSON_REASON)) + tgt.setReasonElement(MarkDown43_50.convertMarkdown((org.hl7.fhir.r4b.model.MarkdownType)src.getExtensionByUrl(EXT_IG_DEPENDSON_REASON).getValue())); + tgt.removeExtension(EXT_IG_DEPENDSON_REASON); return tgt; } @@ -197,6 +202,8 @@ public class ImplementationGuide43_50 { tgt.setPackageIdElement(Id43_50.convertId(src.getPackageIdElement())); if (src.hasVersion()) tgt.setVersionElement(String43_50.convertString(src.getVersionElement())); + if (src.hasReason()) + tgt.addExtension(EXT_IG_DEPENDSON_REASON, MarkDown43_50.convertMarkdown(src.getReasonElement())); return tgt; } From 69439826c6deda2c1919f3732584c8359590ce2f Mon Sep 17 00:00:00 2001 From: Lloyd McKenzie Date: Tue, 19 Nov 2024 22:40:20 -0700 Subject: [PATCH 2/6] Changed approach to extension removal --- .../conv40_50/resources40_50/ImplementationGuide40_50.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/org.hl7.fhir.convertors/src/main/java/org/hl7/fhir/convertors/conv40_50/resources40_50/ImplementationGuide40_50.java b/org.hl7.fhir.convertors/src/main/java/org/hl7/fhir/convertors/conv40_50/resources40_50/ImplementationGuide40_50.java index b087dfb31..852f1d153 100644 --- a/org.hl7.fhir.convertors/src/main/java/org/hl7/fhir/convertors/conv40_50/resources40_50/ImplementationGuide40_50.java +++ b/org.hl7.fhir.convertors/src/main/java/org/hl7/fhir/convertors/conv40_50/resources40_50/ImplementationGuide40_50.java @@ -182,7 +182,7 @@ public class ImplementationGuide40_50 { if (src == null) return null; org.hl7.fhir.r5.model.ImplementationGuide.ImplementationGuideDependsOnComponent tgt = new org.hl7.fhir.r5.model.ImplementationGuide.ImplementationGuideDependsOnComponent(); - ConversionContext40_50.INSTANCE.getVersionConvertor_40_50().copyBackboneElement(src, tgt); + ConversionContext40_50.INSTANCE.getVersionConvertor_40_50().copyBackboneElement(src, tgt, EXT_IG_DEPENDSON_REASON); if (src.hasUri()) tgt.setUriElement(Canonical40_50.convertCanonical(src.getUriElement())); if (src.hasPackageId()) @@ -191,7 +191,6 @@ public class ImplementationGuide40_50 { tgt.setVersionElement(String40_50.convertString(src.getVersionElement())); if (src.hasExtension(EXT_IG_DEPENDSON_REASON)) tgt.setReasonElement(MarkDown40_50.convertMarkdown((org.hl7.fhir.r4.model.MarkdownType)src.getExtensionByUrl(EXT_IG_DEPENDSON_REASON).getValue())); - tgt.removeExtension(EXT_IG_DEPENDSON_REASON); return tgt; } From 49d82405741e5b8326fa72dfed360358ab392fac Mon Sep 17 00:00:00 2001 From: Lloyd McKenzie Date: Wed, 20 Nov 2024 22:18:21 -0700 Subject: [PATCH 3/6] Fix other converter --- .../conv43_50/resources43_50/ImplementationGuide43_50.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/org.hl7.fhir.convertors/src/main/java/org/hl7/fhir/convertors/conv43_50/resources43_50/ImplementationGuide43_50.java b/org.hl7.fhir.convertors/src/main/java/org/hl7/fhir/convertors/conv43_50/resources43_50/ImplementationGuide43_50.java index 2ede80c8a..199716cb3 100644 --- a/org.hl7.fhir.convertors/src/main/java/org/hl7/fhir/convertors/conv43_50/resources43_50/ImplementationGuide43_50.java +++ b/org.hl7.fhir.convertors/src/main/java/org/hl7/fhir/convertors/conv43_50/resources43_50/ImplementationGuide43_50.java @@ -178,7 +178,7 @@ public class ImplementationGuide43_50 { if (src == null) return null; org.hl7.fhir.r5.model.ImplementationGuide.ImplementationGuideDependsOnComponent tgt = new org.hl7.fhir.r5.model.ImplementationGuide.ImplementationGuideDependsOnComponent(); - ConversionContext43_50.INSTANCE.getVersionConvertor_43_50().copyBackboneElement(src, tgt); + ConversionContext43_50.INSTANCE.getVersionConvertor_43_50().copyBackboneElement(src, tgt, EXT_IG_DEPENDSON_REASON); if (src.hasUri()) tgt.setUriElement(Canonical43_50.convertCanonical(src.getUriElement())); if (src.hasPackageId()) @@ -187,7 +187,6 @@ public class ImplementationGuide43_50 { tgt.setVersionElement(String43_50.convertString(src.getVersionElement())); if (src.hasExtension(EXT_IG_DEPENDSON_REASON)) tgt.setReasonElement(MarkDown43_50.convertMarkdown((org.hl7.fhir.r4b.model.MarkdownType)src.getExtensionByUrl(EXT_IG_DEPENDSON_REASON).getValue())); - tgt.removeExtension(EXT_IG_DEPENDSON_REASON); return tgt; } From 51b8ecf4173ce7953daac32134ced1e9a32878d0 Mon Sep 17 00:00:00 2001 From: dotasek Date: Thu, 21 Nov 2024 10:03:18 -0500 Subject: [PATCH 4/6] Bump to test case release --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d0293c92a..7ea8455e7 100644 --- a/pom.xml +++ b/pom.xml @@ -23,7 +23,7 @@ 2.17.0 32.0.1-jre 6.4.1 - 1.6.7-SNAPSHOT + 1.6.7 2.17.0 5.9.2 1.8.2 From 22cfc6c28e1eb04d24228d84ef1b71674dcf7f42 Mon Sep 17 00:00:00 2001 From: hl7-devops Date: Thu, 21 Nov 2024 16:34:08 +0000 Subject: [PATCH 5/6] Release: v6.4.3 ## Validator Changes * fix value set validation on import validation to find external value sets * Fix terminology tester for change to language header * Adjust wording of R5 slicing check * Sort entries in error message about profiles to make the order reproducible ## Security Issues * Automate testing for XMLUtils factory methods ## Other code changes * update language files and add french * make HTA messages translatable * new release - pubpack * NPE fixes * suppress Json resourceType property in some logical models * Fix missing isModifierReason on modifier extensions * fix bug converting NamingSystem.url between versions * Fix IG dependsOn.reason conversion * fix code generation for enums * Whitespace formatting and support for complex extensions ***NO_CI*** --- org.hl7.fhir.convertors/pom.xml | 2 +- org.hl7.fhir.dstu2/pom.xml | 2 +- org.hl7.fhir.dstu2016may/pom.xml | 2 +- org.hl7.fhir.dstu3/pom.xml | 2 +- org.hl7.fhir.r4/pom.xml | 2 +- org.hl7.fhir.r4b/pom.xml | 2 +- org.hl7.fhir.r5/pom.xml | 2 +- org.hl7.fhir.report/pom.xml | 2 +- org.hl7.fhir.utilities/pom.xml | 2 +- org.hl7.fhir.validation.cli/pom.xml | 2 +- org.hl7.fhir.validation/pom.xml | 2 +- pom.xml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/org.hl7.fhir.convertors/pom.xml b/org.hl7.fhir.convertors/pom.xml index 15c5dbfeb..a9d004ec6 100644 --- a/org.hl7.fhir.convertors/pom.xml +++ b/org.hl7.fhir.convertors/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir org.hl7.fhir.core - 6.4.3-SNAPSHOT + 6.4.3 ../pom.xml diff --git a/org.hl7.fhir.dstu2/pom.xml b/org.hl7.fhir.dstu2/pom.xml index 2554d3bfb..c2bc522de 100644 --- a/org.hl7.fhir.dstu2/pom.xml +++ b/org.hl7.fhir.dstu2/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir org.hl7.fhir.core - 6.4.3-SNAPSHOT + 6.4.3 ../pom.xml diff --git a/org.hl7.fhir.dstu2016may/pom.xml b/org.hl7.fhir.dstu2016may/pom.xml index 3419094bd..93aefbc50 100644 --- a/org.hl7.fhir.dstu2016may/pom.xml +++ b/org.hl7.fhir.dstu2016may/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir org.hl7.fhir.core - 6.4.3-SNAPSHOT + 6.4.3 ../pom.xml diff --git a/org.hl7.fhir.dstu3/pom.xml b/org.hl7.fhir.dstu3/pom.xml index cd234d40a..c489dc138 100644 --- a/org.hl7.fhir.dstu3/pom.xml +++ b/org.hl7.fhir.dstu3/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir org.hl7.fhir.core - 6.4.3-SNAPSHOT + 6.4.3 ../pom.xml diff --git a/org.hl7.fhir.r4/pom.xml b/org.hl7.fhir.r4/pom.xml index f367087da..2ccef3d1d 100644 --- a/org.hl7.fhir.r4/pom.xml +++ b/org.hl7.fhir.r4/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir org.hl7.fhir.core - 6.4.3-SNAPSHOT + 6.4.3 ../pom.xml diff --git a/org.hl7.fhir.r4b/pom.xml b/org.hl7.fhir.r4b/pom.xml index 1a5a4acfa..180a695f1 100644 --- a/org.hl7.fhir.r4b/pom.xml +++ b/org.hl7.fhir.r4b/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir org.hl7.fhir.core - 6.4.3-SNAPSHOT + 6.4.3 ../pom.xml diff --git a/org.hl7.fhir.r5/pom.xml b/org.hl7.fhir.r5/pom.xml index 667bea499..73d3975ac 100644 --- a/org.hl7.fhir.r5/pom.xml +++ b/org.hl7.fhir.r5/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir org.hl7.fhir.core - 6.4.3-SNAPSHOT + 6.4.3 ../pom.xml diff --git a/org.hl7.fhir.report/pom.xml b/org.hl7.fhir.report/pom.xml index 829bb5dc8..5a33bea80 100644 --- a/org.hl7.fhir.report/pom.xml +++ b/org.hl7.fhir.report/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir org.hl7.fhir.core - 6.4.3-SNAPSHOT + 6.4.3 ../pom.xml diff --git a/org.hl7.fhir.utilities/pom.xml b/org.hl7.fhir.utilities/pom.xml index 2d5907a4a..90ab248d2 100644 --- a/org.hl7.fhir.utilities/pom.xml +++ b/org.hl7.fhir.utilities/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir org.hl7.fhir.core - 6.4.3-SNAPSHOT + 6.4.3 ../pom.xml diff --git a/org.hl7.fhir.validation.cli/pom.xml b/org.hl7.fhir.validation.cli/pom.xml index 28daaff40..1a716eef7 100644 --- a/org.hl7.fhir.validation.cli/pom.xml +++ b/org.hl7.fhir.validation.cli/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir org.hl7.fhir.core - 6.4.3-SNAPSHOT + 6.4.3 ../pom.xml diff --git a/org.hl7.fhir.validation/pom.xml b/org.hl7.fhir.validation/pom.xml index 68a9bb229..d9d84f243 100644 --- a/org.hl7.fhir.validation/pom.xml +++ b/org.hl7.fhir.validation/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir org.hl7.fhir.core - 6.4.3-SNAPSHOT + 6.4.3 ../pom.xml diff --git a/pom.xml b/pom.xml index 7ea8455e7..1d9fa6217 100644 --- a/pom.xml +++ b/pom.xml @@ -14,7 +14,7 @@ HAPI FHIR --> org.hl7.fhir.core - 6.4.3-SNAPSHOT + 6.4.3 pom From 48821e4202d2542c1a2a50c6dbdcc5e52e976310 Mon Sep 17 00:00:00 2001 From: hl7-devops Date: Thu, 21 Nov 2024 17:03:30 +0000 Subject: [PATCH 6/6] Updating version to: 6.4.4-SNAPSHOT and incrementing test cases dependency. --- RELEASE_NOTES.md | 20 ++------------------ org.hl7.fhir.convertors/pom.xml | 2 +- org.hl7.fhir.dstu2/pom.xml | 2 +- org.hl7.fhir.dstu2016may/pom.xml | 2 +- org.hl7.fhir.dstu3/pom.xml | 2 +- org.hl7.fhir.r4/pom.xml | 2 +- org.hl7.fhir.r4b/pom.xml | 2 +- org.hl7.fhir.r5/pom.xml | 2 +- org.hl7.fhir.report/pom.xml | 2 +- org.hl7.fhir.utilities/pom.xml | 2 +- org.hl7.fhir.validation.cli/pom.xml | 2 +- org.hl7.fhir.validation/pom.xml | 2 +- pom.xml | 2 +- 13 files changed, 14 insertions(+), 30 deletions(-) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 579414975..7b06c6ab5 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,23 +1,7 @@ ## Validator Changes -* fix value set validation on import validation to find external value sets -* Fix terminology tester for change to language header -* Adjust wording of R5 slicing check -* Sort entries in error message about profiles to make the order reproducible - -## Security Issues - -* Automate testing for XMLUtils factory methods +* no changes ## Other code changes -* update language files and add french -* make HTA messages translatable -* new release - pubpack -* NPE fixes -* suppress Json resourceType property in some logical models -* Fix missing isModifierReason on modifier extensions -* fix bug converting NamingSystem.url between versions -* Fix IG dependsOn.reason conversion -* fix code generation for enums -* Whitespace formatting and support for complex extensions +* no changes \ No newline at end of file diff --git a/org.hl7.fhir.convertors/pom.xml b/org.hl7.fhir.convertors/pom.xml index a9d004ec6..b9b6fbbb9 100644 --- a/org.hl7.fhir.convertors/pom.xml +++ b/org.hl7.fhir.convertors/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir org.hl7.fhir.core - 6.4.3 + 6.4.4-SNAPSHOT ../pom.xml diff --git a/org.hl7.fhir.dstu2/pom.xml b/org.hl7.fhir.dstu2/pom.xml index c2bc522de..13ec112a3 100644 --- a/org.hl7.fhir.dstu2/pom.xml +++ b/org.hl7.fhir.dstu2/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir org.hl7.fhir.core - 6.4.3 + 6.4.4-SNAPSHOT ../pom.xml diff --git a/org.hl7.fhir.dstu2016may/pom.xml b/org.hl7.fhir.dstu2016may/pom.xml index 93aefbc50..52c91dd79 100644 --- a/org.hl7.fhir.dstu2016may/pom.xml +++ b/org.hl7.fhir.dstu2016may/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir org.hl7.fhir.core - 6.4.3 + 6.4.4-SNAPSHOT ../pom.xml diff --git a/org.hl7.fhir.dstu3/pom.xml b/org.hl7.fhir.dstu3/pom.xml index c489dc138..51b6e815e 100644 --- a/org.hl7.fhir.dstu3/pom.xml +++ b/org.hl7.fhir.dstu3/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir org.hl7.fhir.core - 6.4.3 + 6.4.4-SNAPSHOT ../pom.xml diff --git a/org.hl7.fhir.r4/pom.xml b/org.hl7.fhir.r4/pom.xml index 2ccef3d1d..7d521d7d8 100644 --- a/org.hl7.fhir.r4/pom.xml +++ b/org.hl7.fhir.r4/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir org.hl7.fhir.core - 6.4.3 + 6.4.4-SNAPSHOT ../pom.xml diff --git a/org.hl7.fhir.r4b/pom.xml b/org.hl7.fhir.r4b/pom.xml index 180a695f1..0bd726d72 100644 --- a/org.hl7.fhir.r4b/pom.xml +++ b/org.hl7.fhir.r4b/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir org.hl7.fhir.core - 6.4.3 + 6.4.4-SNAPSHOT ../pom.xml diff --git a/org.hl7.fhir.r5/pom.xml b/org.hl7.fhir.r5/pom.xml index 73d3975ac..b550f20b3 100644 --- a/org.hl7.fhir.r5/pom.xml +++ b/org.hl7.fhir.r5/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir org.hl7.fhir.core - 6.4.3 + 6.4.4-SNAPSHOT ../pom.xml diff --git a/org.hl7.fhir.report/pom.xml b/org.hl7.fhir.report/pom.xml index 5a33bea80..df78183e4 100644 --- a/org.hl7.fhir.report/pom.xml +++ b/org.hl7.fhir.report/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir org.hl7.fhir.core - 6.4.3 + 6.4.4-SNAPSHOT ../pom.xml diff --git a/org.hl7.fhir.utilities/pom.xml b/org.hl7.fhir.utilities/pom.xml index 90ab248d2..7b8d95d9c 100644 --- a/org.hl7.fhir.utilities/pom.xml +++ b/org.hl7.fhir.utilities/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir org.hl7.fhir.core - 6.4.3 + 6.4.4-SNAPSHOT ../pom.xml diff --git a/org.hl7.fhir.validation.cli/pom.xml b/org.hl7.fhir.validation.cli/pom.xml index 1a716eef7..8319df515 100644 --- a/org.hl7.fhir.validation.cli/pom.xml +++ b/org.hl7.fhir.validation.cli/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir org.hl7.fhir.core - 6.4.3 + 6.4.4-SNAPSHOT ../pom.xml diff --git a/org.hl7.fhir.validation/pom.xml b/org.hl7.fhir.validation/pom.xml index d9d84f243..e4b5237c5 100644 --- a/org.hl7.fhir.validation/pom.xml +++ b/org.hl7.fhir.validation/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir org.hl7.fhir.core - 6.4.3 + 6.4.4-SNAPSHOT ../pom.xml diff --git a/pom.xml b/pom.xml index 1d9fa6217..0afbf03d3 100644 --- a/pom.xml +++ b/pom.xml @@ -14,7 +14,7 @@ HAPI FHIR --> org.hl7.fhir.core - 6.4.3 + 6.4.4-SNAPSHOT pom