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.0 ## Validator Changes * Fix significant bug where validator gets internal child lists incorrect and doesn't do complete validation when switching between validating profiles and resources directly * Performance improvement for validator parsing - thanks Brian Postlethwaite * Fix Crash on slicing a sliced element #862 * Fix ig loading from direct URL (#1559) * Fix bug copying constraints into Bundle.entry.resource profiles * Fix bug loading R5 extensions with imported value sets * Replace dom-3 with custom java code, and check xhtml references to contained content * Improve concept map code validation * Update observation validator for committee decision not to enforce Blood Pressure profile for Mean Blood Pressure * Validate value set internal codeSystem references * Split value set validation into 10k batches for very large extensional value sets * Hack fix for opd-3 * Fix bug where using ontoserver when not appropriate * Fix issues with inferSystem * Don't require HL7 committee for contained resources in HL7 namespace * Fix where validator was ignoring minimum cardinality for XML attributes (especially in CDA) * Improved ConceptMap validation * Updated IG versions used for -cda and -ccda CLI validation options. * Change validator so that it marks value properties in primitive data types as illegal ## Other code changes * Fix code system rendering for uri properties * Fix broken links Bundle and Profile rendering * Take copy of code when doing local validation * WIP: major refactor of cross version analysis * Add support for subsumes in tx client * Don't generate snapshots when scanning structure definitions for resource names * Work on ConceptMap infrastructure for cross-version analysis * Fix bug where not rendering ConceptMap relationships * Fix wrong URLs rendering Profiles and Questionnaires * Fix bug using wrong version constant for R3 * Updates for R5 StructureMap syntax * Support for case sensitive Code system tests * Add TurtleGeneratorTests for R5 * Introduce new validator cliContext option disableDefaultResourceFetcher (#1526) * Render contained resources when rendering Patient resources * Fix bug in FML Parser ***NO_CI***
2024-02-28 00:04:13 -05:00
<version>6.3.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
<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>