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

109 lines
3.3 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"
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>
2019-01-13 15:33:14 -05:00
<parent>
2019-01-15 09:12:15 -05:00
<groupId>ca.uhn.hapi.fhir</groupId>
2019-01-13 15:33:14 -05:00
<artifactId>org.hl7.fhir.core</artifactId>
Release: v6.3.7 ## Validator Changes * Fix bug where some #refs are not resolved to the root of the resource in FHIRPath slicing evaluation * Fix bug passing wrong type to tx server when using inferSystem * Fix bug processing version of CodeSystem.supplements incorrectly * Don't process wrong parent when processing snapshot of element with profiled type that is not reprofiled * Fix typo in OID message * Fix handling value set exclude filters * Allow code system declared properties to be self-referential ## I18n changes * More comprehensive internationalization phrase coverage reporting on project page * Move many rendering phrases into i18n framework ## Rendering Changes * Fix issue with unknown element rendering fixed value for Attachment * Fix bug calculating value set expansion size for multiple imports * Fix bug using wrong message for value sets that are too costly to expand * Fix extension urls not being linked in tree view * rendering improvements and remove static use of describeSystem * Fix NPE rendering profile comparisons * Fix bug where slicing and grouping gets mixed up rendering profile tree ## Other code changes * Wrap general exception for IWorkerContext (Catch missed exception from HAPI) * Shim interfaces and classes to support clinical reasoning project updates. * Fix duplicate txServer getters and setters * Use extension class on Exception to force try-catch blocks on checkCodeOnServer calls (#1609) * rework OID handling for better consistency * handle time outs doing vsac import (starlink obstructions) ***NO_CI***
2024-05-10 00:18:38 -04:00
<version>6.3.7</version>
2019-01-13 15:33:14 -05:00
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>org.hl7.fhir.dstu2</artifactId>
<packaging>bundle</packaging>
2019-01-13 15:33:14 -05:00
<properties>
<checkstyle_config_location>${project.parent.basedir}</checkstyle_config_location>
</properties>
<dependencies>
2019-01-13 15:33:14 -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>
2019-01-13 15:33:14 -05:00
<!-- UCUM -->
<dependency>
<groupId>org.fhir</groupId>
<artifactId>ucum</artifactId>
<optional>true</optional>
</dependency>
2019-01-13 15:33:14 -05:00
<!-- XML Parsers -->
<dependency>
2023-08-23 12:05:58 -04:00
<groupId>org.ogce</groupId>
<artifactId>xpp3</artifactId>
<optional>true</optional>
</dependency>
2019-01-13 15:33:14 -05:00
2020-05-12 11:33:54 -04:00
<!-- JSON Parsers -->
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<optional>true</optional>
</dependency>
<!-- Apache POI -->
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml-full</artifactId>
<optional>true</optional>
</dependency>
2019-01-13 15:33:14 -05:00
<dependency>
<groupId>org.antlr</groupId>
<artifactId>ST4</artifactId>
<version>4.1</version>
<optional>true</optional>
</dependency>
2019-01-13 15:33:14 -05:00
<!-- HTTP Client -->
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<optional>true</optional>
</dependency>
2019-01-13 15:33:14 -05:00
<!-- Test dependencies -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.sf.saxon</groupId>
<artifactId>Saxon-HE</artifactId>
<scope>test</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>
</dependencies>
2019-01-13 15:33:14 -05:00
</project>