107 lines
4.1 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="UTF-8"?>
<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">
<parent>
<groupId>ca.uhn.hapi.fhir</groupId>
<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 23:16:02 +00:00
<version>6.0.0</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
2020-05-06 11:00:57 -04:00
<artifactId>org.hl7.fhir.report</artifactId>
<packaging>bundle</packaging>
<properties>
<maven.deploy.skip>true</maven.deploy.skip>
</properties>
<dependencies>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>org.hl7.fhir.convertors</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>org.hl7.fhir.r5</artifactId>
<version>${project.version}</version>
<exclusions>
<exclusion>
<groupId>org.antlr</groupId>
<artifactId>ST4</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>org.hl7.fhir.utilities</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>org.hl7.fhir.validation</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jacoco_version}</version>
<executions>
<execution>
<id>report-aggregate</id>
<phase>prepare-package</phase>
<goals>
<goal>report-aggregate</goal>
</goals>
<configuration>
<title>JaCoCo</title>
<footer>Code Coverage Report for FHIR core libs ${project.version}</footer>
<includes>
<!-- Analyze class files only to exclude shaded agent JAR from report -->
<include>**/*.class</include>
</includes>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.basepom.maven</groupId>
<artifactId>duplicate-finder-maven-plugin</artifactId>
<version>1.4.0</version>
<configuration>
<!-- The report project pulls in resources from all the other packages, which results in some duplicate
classes being pulled in. This will need to be fixed eventually, but for now, we can just disable the
check on this package. It's only purpose is to aggregate the reports.-->
<skip>true</skip>
</configuration>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<configuration>
<skipStaging>true</skipStaging>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>