mirror of
https://github.com/hapifhir/org.hl7.fhir.core.git
synced 2025-02-08 05:48:12 +00:00
b43e7e9bc1
## Validator Changes * Validate that ConceptMap references to ValueSets are actual value sets * Check if abstract classes have concrete subtypes in scope * Handle tx ecosystem failure properly * fix for CLI Should Fail with Non-Zero Exit Code on TX Test Errors ## Other code changes * Add support for multiple lines in the first cell in heirarchical tables * Also add support for suppressing lines and inner borders * Add support for table.rows in TestDataFactory * Add Element View for non-technical readers of profiles * Improved Rendering for Timing Datatype * Fix for handling SD extensions when generating snapshots * Don't remove bindings from types with characteristics = can-bind (Extensions in R5) * Various minor Fixes for generating snapshots for archetypes (checking type parameters) * Fix logback configs + update logback (#1868) * .qos.logback-logback-core-1.5.13: Fix inclusion of logback-test in jar and fix classpath log configs * Fix LoggingPolicy enum (use SLF4J) ***NO_CI***
108 lines
3.2 KiB
XML
108 lines
3.2 KiB
XML
<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>
|
|
|
|
<parent>
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
<artifactId>org.hl7.fhir.core</artifactId>
|
|
<version>6.5.3</version>
|
|
<relativePath>../pom.xml</relativePath>
|
|
</parent>
|
|
|
|
<artifactId>org.hl7.fhir.dstu2016may</artifactId>
|
|
<packaging>bundle</packaging>
|
|
|
|
<properties>
|
|
<checkstyle_config_location>${project.parent.basedir}</checkstyle_config_location>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
|
|
<!-- 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>
|
|
|
|
<!-- UCUM -->
|
|
<dependency>
|
|
<groupId>org.fhir</groupId>
|
|
<artifactId>ucum</artifactId>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<!-- XML Parsers -->
|
|
<dependency>
|
|
<groupId>org.ogce</groupId>
|
|
<artifactId>xpp3</artifactId>
|
|
</dependency>
|
|
|
|
<!-- 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>
|
|
|
|
<dependency>
|
|
<groupId>org.antlr</groupId>
|
|
<artifactId>ST4</artifactId>
|
|
<version>4.1</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<!-- HTTP Client -->
|
|
<dependency>
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
<artifactId>httpclient</artifactId>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<!-- 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>
|
|
|
|
<!-- 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>
|
|
|
|
</project>
|