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.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>
<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>
<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>