108 lines
3.2 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>
2019-01-13 14:33:14 -06:00
<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.5.6 ## Validator Changes * New Feature: Validating references: parameters -check-references and -resolution-context * New Feature: Use AI Service to validate CodeableConcept.text (very experimental) * Add AI validation tests as a command line option ([-aiTests](https://chat.fhir.org/#narrow/channel/323443-Artificial-Intelligence.2FMachine-Learning-.28AI.2FML.29/topic/LocalAI)) * Don't enforce code system property references to standard properties in R4 (R4 hack workaround) * Correctly handle supplements when validating based on expansions * Fix issues with version dependent resolution of correct server for implicit value sets * Better handle failure to find imported value sets when expanding * correct error handling for expansion failure * Correct grammar in language about resource not being valid against a profile * use IPS 2.0.0 for `-ips`, not an old copy * Fix NPE generating snapshots with expansions * Rework `-txTests` to support additional test files and improve R4/R5 logging * Fix bugs in RulesDrivenPolicyAdvisor * Accept property in CodeSystem without requiring it be backed by a code * Add issue when extension is deprecated ## Other code changes * Track & report expansion source when rendering ValueSet expansions * Render ValueSet supplement dependencies * Add server headers to fhir-settings.json * find places where ManagedFileAccess was missed * Fix Actor rendering in obligations tables * Renderer: move xml-no-order to tools ig * Resource Factory: support for range in sheet for instance generation (#1881) ***NO_CI***
2025-01-17 02:31:43 +00:00
<version>6.5.6</version>
2019-01-13 14:33:14 -06:00
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>org.hl7.fhir.dstu2016may</artifactId>
<packaging>bundle</packaging>
2019-01-13 14:33:14 -06:00
<properties>
<checkstyle_config_location>${project.parent.basedir}</checkstyle_config_location>
</properties>
<dependencies>
2019-01-13 14:33:14 -06: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 14:33:14 -06:00
<!-- UCUM -->
<dependency>
<groupId>org.fhir</groupId>
<artifactId>ucum</artifactId>
<optional>true</optional>
</dependency>
2019-01-13 14:33:14 -06:00
<!-- XML Parsers -->
<dependency>
2023-08-23 12:05:58 -04:00
<groupId>org.ogce</groupId>
<artifactId>xpp3</artifactId>
</dependency>
2019-01-13 14:33:14 -06: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 14:33:14 -06:00
<dependency>
<groupId>org.antlr</groupId>
<artifactId>ST4</artifactId>
<version>4.1</version>
<optional>true</optional>
</dependency>
2019-01-13 14:33:14 -06:00
<!-- HTTP Client -->
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<optional>true</optional>
</dependency>
2019-01-13 14:33:14 -06: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 14:33:14 -06:00
</project>