This is an automated email from the ASF dual-hosted git repository. jamesnetherton pushed a commit to branch camel-3.14.x in repository https://gitbox.apache.org/repos/asf/camel.git
commit f23de594f32596d50dc533512bad685a1e1c883b Author: James Netherton <[email protected]> AuthorDate: Mon Mar 14 10:18:01 2022 +0000 CAMEL-17788: Support FHIR versions DSTU2_HL7ORG & DSTU2_1 --- components/camel-fhir/camel-fhir-component/pom.xml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/components/camel-fhir/camel-fhir-component/pom.xml b/components/camel-fhir/camel-fhir-component/pom.xml index 041a683..3cbfe95 100644 --- a/components/camel-fhir/camel-fhir-component/pom.xml +++ b/components/camel-fhir/camel-fhir-component/pom.xml @@ -108,6 +108,18 @@ <version>${hapi-fhir-version}</version> </dependency> + <dependency> + <groupId>ca.uhn.hapi.fhir</groupId> + <artifactId>hapi-fhir-structures-dstu2.1</artifactId> + <version>${hapi-fhir-version}</version> + </dependency> + + <dependency> + <groupId>ca.uhn.hapi.fhir</groupId> + <artifactId>hapi-fhir-structures-hl7org-dstu2</artifactId> + <version>${hapi-fhir-version}</version> + </dependency> + <!-- testing --> <dependency> <groupId>org.junit.jupiter</groupId>
