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

120 lines
3.7 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.0.0 ## Validator Changes Note: This validator release is accompanied by a new release of tx.fhir.org, and earlier versions of the validator will not perform validation correctly for some valuesets and languages. This is in effect a mandatory upgrade * Major **Breaking** change: test multi-lanugage support on the terminology service API, and make many fixes. ** This release also includes full support for supplements providing designations and properties * Add support for -install operation to install packages and generate snapshots while at it (support simplifier packages in sushi) * Add support for ```lang-transform extract``` and ```-lang-transform inject``` to the validator (start of multi-lingual implementation support) * Add support for -tx-tests to validator * Change settings file to fhir-settings.json in .fhir, instead of fhir-tools-setting.ini (see [here](https://confluence.hl7.org/display/FHIR/Using+fhir-settings.json) for documentation) * Add provisional support for running without a network: -no-network. Beware: this is not fully tested at this point * Warning not error when the code system isn't known validating questionnaires * Fix up loading of IG bundles * Work around issue with R5 path in extensions pack * Fix issue with SearchParameter validation throwing an exception if no expressions are valid ## Other code changes * Code to support translation functionality * Partial fix for problem parsing maps from previous versions * Fix Code System rendering for supplements, and when there's 1..2 display translations * Remove spurious header from ConceptMap rendering * Return ID part correctly when FhirPath expression result is converted to string * fix problem with leaf rendering in profile driven renderer * Fix R4B tests to be based on R4B * fix index error validating HierarchicalTable * fix NPE in requirements renderer * Fix NPE in code generator * Rework package cache manager - add testing mode * Add link to questionnaire rendering questionnaireResponse + Fix access violation rendering questionnaire * Fix bugs generating narratives * Defining the existence of R6 * i18n framework for HTML generation in renderers - step #1 * Re-org validation testing to be more memory efficient * Better error handling loading resources * Restore broken R4 loading * Add new R5 fields to R4/R5 conversion for ValueSet * minor changes two HumanName.getNameAsSingleString (missed family name) ***NO_CI***
2023-04-26 19:16:02 -04:00
<version>6.0.0</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
<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>
<version>1.0.3</version>
<optional>true</optional>
</dependency>
2019-01-13 15:33:14 -05:00
<!-- XML Parsers -->
<dependency>
<groupId>xpp3</groupId>
<artifactId>xpp3</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>xpp3</groupId>
<artifactId>xpp3_xpath</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>
<version>${apache_poi_version}</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>${apache_poi_version}</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml-schemas</artifactId>
<version>${apache_poi_version}</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>ooxml-schemas</artifactId>
<version>1.4</version>
<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>