Exclude pinned core deps
This commit is contained in:
parent
b2ebdec183
commit
eee61285f3
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -39,7 +39,7 @@ public class CqlProviderR4Test extends BaseCrR4Test {
|
|||
protected PartitionHelper myPartitionHelper;
|
||||
|
||||
@Autowired
|
||||
MeasureOperationsProvider myMeasureOperationsProvider;
|
||||
MeasureOperationsProvider myMeasureOperationsProvider;
|
||||
|
||||
@Test
|
||||
public void testHedisIGEvaluateMeasureWithTimeframe() throws IOException {
|
||||
|
|
Loading…
Reference in New Issue