org.hl7.fhir.core/org.hl7.fhir.convertors/pom.xml

142 lines
4.5 KiB
XML
Raw Normal View History

2019-01-13 15:33:14 -05:00
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2019-02-24 20:51:00 -05:00
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>org.hl7.fhir.core</artifactId>
Release: v6.4.1 ## Validator Changes * Support authentication for terminology servers (see https://confluence.hl7.org/display/FHIR/Using+fhir-settings.json) * Fix issue where valdiator not retaining extension context when checking constraint expressions in profiles * Validate min-length when found in extension * Correct bug parsing json-property-key values with meant validation failed * Fix problem validating json-property-key value pairs * Fix special case r5 loading of terminology to fix validation error on ExampleScenario * Improve handling of JSON format errors * Fix bug where extension slices defined in other profiles are not found when processing slices based on extension * Validate fhirpath expression in slice discriminators * Fix slicing by type and profile to allow multiple options per slice * List measure choices when a match by version can't be found * Check server metadata when executing terminology test cases ## Other code changes * More work on code generation for profiles * Render min-length extension on profiles * Clone SQL on FHIR engine to R4, and update FHIRPath engine based on R5 current code * Update SQL on FHIR engine to allow push as well as pull * Change R5 tx server to use http://tx.fhir.org/r5 (instead of /r4) * Update output from tx-tester to include release ready statement * Fix rendering of Logical Models for polymorphic elements, and rendering target profiles with versions * Render contained resources in List resource * #1790 - Fix versionFromCanonical returns system instead and systemFromCanonical returns version ***NO_CI***
2024-11-12 16:19:51 -05:00
<version>6.4.1</version>
2019-02-24 20:51:00 -05:00
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>org.hl7.fhir.convertors</artifactId>
<packaging>bundle</packaging>
2019-02-24 20:51:00 -05:00
<properties>
<checkstyle_config_location>${project.parent.basedir}</checkstyle_config_location>
</properties>
2019-02-24 20:51:00 -05:00
<dependencies>
2020-04-08 21:45:26 -04:00
<!-- Commons -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
<optional>true</optional>
</dependency>
2019-02-24 20:51:00 -05:00
<!-- HAPI Dependencies -->
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-base</artifactId>
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>org.hl7.fhir.utilities</artifactId>
</dependency>
2020-05-12 11:33:54 -04:00
<!-- JSON Parsers -->
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<optional>true</optional>
</dependency>
2019-02-24 20:51:00 -05:00
<!-- FHIR Versions -->
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>org.hl7.fhir.dstu2</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>org.hl7.fhir.dstu2016may</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>org.hl7.fhir.dstu3</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>org.hl7.fhir.r4</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>org.hl7.fhir.r4b</artifactId>
<version>${project.version}</version>
</dependency>
2019-02-24 20:51:00 -05:00
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>org.hl7.fhir.r5</artifactId>
<version>${project.version}</version>
</dependency>
<!-- UCUM -->
<dependency>
<groupId>org.fhir</groupId>
<artifactId>ucum</artifactId>
<optional>true</optional>
</dependency>
2023-08-21 11:21:45 -04:00
<dependency>
2023-08-23 12:05:58 -04:00
<groupId>org.ogce</groupId>
2023-08-21 11:21:45 -04:00
<artifactId>xpp3</artifactId>
<optional>true</optional>
</dependency>
<!-- HTTP Client -->
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<optional>true</optional>
</dependency>
2023-09-20 09:24:31 -04:00
<dependency>
<groupId>com.squareup.okio</groupId>
<artifactId>okio</artifactId>
<optional>true</optional>
</dependency>
2021-06-01 07:53:40 -04:00
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<scope>provided</scope>
</dependency>
2020-04-29 16:55:40 -04:00
<!-- JUnit Jupiter -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<scope>test</scope>
</dependency>
2023-07-17 21:06:06 -04:00
<dependency>
<groupId>org.xerial</groupId>
<artifactId>sqlite-jdbc</artifactId>
</dependency>
2019-02-24 20:51:00 -05:00
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.basepom.maven</groupId>
<artifactId>duplicate-finder-maven-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
2019-01-13 15:33:14 -05:00
</project>