Exclude pinned core deps

This commit is contained in:
Tadgh 2023-02-24 09:04:39 -08:00
parent b2ebdec183
commit eee61285f3
3 changed files with 15 additions and 4 deletions

View File

@ -273,9 +273,8 @@ public class VersionCanonicalizer {
retVal.setSystem(coding.getSystem());
retVal.setDisplay(coding.getDisplay());
retVal.setVersion(coding.getVersion());
if (coding.getUserSelected() != null) {
retVal.setUserSelected(coding.getUserSelected());
}
retVal.setUserSelected( ! coding.getUserSelectedElement().isEmpty() && coding.getUserSelected() );
return retVal;
}

View File

@ -74,6 +74,18 @@
<artifactId>evaluator.fhir</artifactId>
<version>${cql-evaluator.version}</version>
<exclusions>
<exclusion>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>org.hl7.fhir.r4</artifactId>
</exclusion>
<exclusion>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>org.hl7.fhir.r4b</artifactId>
</exclusion>
<exclusion>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>org.hl7.fhir.r5</artifactId>
</exclusion>
<exclusion>
<groupId>xpp3</groupId>
<artifactId>xpp3</artifactId>

View File

@ -39,7 +39,7 @@ public class CqlProviderR4Test extends BaseCrR4Test {
protected PartitionHelper myPartitionHelper;
@Autowired
MeasureOperationsProvider myMeasureOperationsProvider;
MeasureOperationsProvider myMeasureOperationsProvider;
@Test
public void testHedisIGEvaluateMeasureWithTimeframe() throws IOException {