org.hl7.fhir.core/org.hl7.fhir.report/pom.xml

107 lines
4.2 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.5.0 ## Validator Changes * Add support for valueset-version * Add support for terminology extraction * Add support for expansion parameters when validating * fix NPE in validator around Extension context * Handle secondary terminology server errors properly * Fix questionnaire response status checking * Add versions to message about multiple matching profiles * hide API-Key from appearing on the tx log * Add supplements for used systems as well as for value set systems when validating on server * fix missing port from server when doing tx-registry redirections * Fix problem not finding current version of extensions pack for non-R5 versions * Fix validation of displays when language is unknown * fix issue missing idrefs validating IPS documents * Update FHIRPath validation to handle rootResource type properly * Fix obscure error on contentReference in profiles in FHIRPath engine * Fix version conversion issue for validating derived questionnaires ## Other code changes * New release of pubpack * Fix r4b liquid tests * Refactor Liquid engine and add support for forLoop and capture * Add support for liquid on csv files * Add support for using Liquid on plain JSON directly and add support for markdownify filter * Many improvements to Profile Code Generation * Start working on using new IG infrastructure for Tx tests * Questionnaire rendering improvements * Merge Functionality for CapabilityStatement.import * Do not use metadata from data type profiles on elements when generating snapshots * Fix presentation issues and union and intersection links in previous version comparison * Fix filter comparison logic when comparing valuesets * Fix version issues in snapshot generation tests * Eliminate id from snapshot generation test case comparison * Change rules around stripping extensions when generating snapshots * fix bug using wrong reference on uri in liquid renderer * add translations for expansion errors * fix issue with comparison template missing * Apply null pointer check to all switch(Enumeration) statements in version conversion code * Remove mysql dependency * Fix bug in DecimalType on null Bigdecimal ()] all versions) * Fix bad URL in inter-version extension conversion of ValueSet for ValueSet property ***NO_CI***
2024-12-09 19:02:07 -05:00
<version>6.5.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>
<checkstyle_config_location>${project.parent.basedir}</checkstyle_config_location>
</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>
<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>
2024-08-30 13:36:13 -04:00
<skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>