149 lines
3.6 KiB
XML
Raw Normal View History

2019-01-13 14:33:14 -06: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>
<parent>
2019-01-15 08:12:15 -06:00
<groupId>ca.uhn.hapi.fhir</groupId>
2019-01-13 14:33:14 -06:00
<artifactId>org.hl7.fhir.core</artifactId>
Release: v6.2.6 ## Validator Changes * Fix bug where validator doesn't actually validate web sourced input * Fix narrative link validation and add id/idref validation * Remove fhir-test-cases from Validator CLI JAR (#1497) (reduce size) * Fix to CDA xsi:type validation per SD decision * Apply regex pattern to literal format if defined * Improvements to vital signs related messages * Fix R4 con-3 FHIRPath expression * Fix bug loading packages with partially specified version that doesn't exist * Fix for occasional missing warnings around bundle link validation * Fix using wrong resource type when validating constraints in data type definitions during R6 build * Fix NPE in validator processing CCDA examples * Fix problem with version dependencies when loading npm packages directly as files * Fix for SearchParameter validation using custom resource types ## Other code changes * Bump commonmark version * fix Utilities display of time periods (fixed width hour:min) * Fix stated path for error when code not in value set * Fix rendering of trigger definition using tables inside paragraphs * Update VSAC importer to fix timeout issues * Refactor FHIRPath java package * Fix problem with profiled resources being called examples in IG publisher * Remove dependencies for unused UI experiment (#1465) * Remove AU connectathon * Include hamcrest dependency * Fix breaking ValidationEngineTests * Give kinder error message for missing param * Fix commonmark group and bump version (#1500) * Remove dep used for local testing * Bump jackson & logback versions * Fix StringType element properties not being copied in various Address, HumanName convertors * Handle all initial value types when rendering Questionnaires * Ensure Address.line[] element data is copied over * Write locking on FilesystemPackageCacheManager * Fix problems setting owning committee consistently * Utility classes for fule system package cache pre-loading ***NO_CI***
2023-12-13 18:41:20 +00:00
<version>6.2.6</version>
2019-01-13 14:33:14 -06:00
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>org.hl7.fhir.r4</artifactId>
<packaging>bundle</packaging>
2019-01-13 14:33:14 -06:00
<properties>
<checkstyle_config_location>${project.parent.basedir}</checkstyle_config_location>
</properties>
2019-01-13 14:33:14 -06:00
<dependencies>
<!-- HAPI Dependencies -->
<dependency>
2019-01-15 09:42:29 -05:00
<groupId>ca.uhn.hapi.fhir</groupId>
2019-01-13 14:33:14 -06:00
<artifactId>org.hl7.fhir.utilities</artifactId>
2020-06-05 11:09:05 -04:00
</dependency>
2020-06-05 11:05:52 -04:00
2019-01-31 13:41:05 -05:00
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-base</artifactId>
<exclusions>
<exclusion>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-utilities</artifactId>
</exclusion>
</exclusions>
</dependency>
2019-01-13 14:33:14 -06:00
<!-- UCUM -->
<dependency>
<groupId>org.fhir</groupId>
<artifactId>ucum</artifactId>
<optional>true</optional>
</dependency>
<!-- XML Parsers -->
<dependency>
2023-08-23 12:05:58 -04:00
<groupId>org.ogce</groupId>
2019-01-13 14:33:14 -06:00
<artifactId>xpp3</artifactId>
<optional>true</optional>
</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>
<!-- 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>
<dependency>
<groupId>com.squareup.okio</groupId>
<artifactId>okio</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.squareup.okio</groupId>
<artifactId>okio-jvm</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.hl7.fhir.testcases</groupId>
<artifactId>fhir-test-cases</artifactId>
<version>${validator_test_case_version}</version>
<scope>test</scope>
</dependency>
2019-01-13 14:33:14 -06:00
<!-- 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>
2019-01-13 14:33:14 -06:00
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.antlr</groupId>
<artifactId>ST4</artifactId>
<version>4.1</version>
<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>
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>
2019-01-13 14:33:14 -06:00
</dependencies>
2019-07-23 06:00:14 -04:00
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<excludes>
<exclude>**/*.out</exclude>
</excludes>
</resource>
</resources>
</build>
2019-01-13 14:33:14 -06:00
</project>