Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update current fhir version to fix failing CI #303

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion efsity/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ dependencies {
implementation(deps.commons.compress)
implementation(deps.gson)
implementation(deps.hapi.fhir.structures.r4)
implementation(deps.hapi.fhir.utilities)
implementation(deps.json)
implementation(deps.jsonschemafriend)
implementation(deps.picocli)
Expand Down
9 changes: 3 additions & 6 deletions efsity/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,8 @@ caffeine-version="2.9.3"
common-compress-version="1.22"
cql-version="3.3.2"
gson-version="2.10.1"
hapi-fhir-core-version="5.6.106"
hapi-fhir-utilities-version="3.8.0"
hapi-fhir-version="6.0.1"
hapi-fhir-core-version="6.0.22"
hapi-fhir-version="6.8.0"
info-picocli-version="4.7.4"
jackson-version="2.15.2"
javafaker-version="1.0.2"
Expand Down Expand Up @@ -34,9 +33,7 @@ evaluator-dagger = { module = "org.opencds.cqf.cql:evaluator.dagger", version.re
evaluator-plandefinition = { module = "org.opencds.cqf.cql:evaluator.plandefinition", version.ref = "opencds-cql-version" }
gson = { module = "com.google.code.gson:gson", version.ref = "gson-version" }
hapi-fhir-structures-r4 = { module = "ca.uhn.hapi.fhir:hapi-fhir-structures-r4", version.ref = "hapi-fhir-version" }
hapi-fhir-utilities = { module = "ca.uhn.hapi.fhir:hapi-fhir-utilities", version.ref = "hapi-fhir-utilities-version" }
org-hl7-fhir-r4 = { module = "ca.uhn.hapi.fhir:org.hl7.fhir.r4", version.ref = "hapi-fhir-core-version" }
org-hl7-fhir-utilities = { module = "ca.uhn.hapi.fhir:org.hl7.fhir.utilities", version.ref = "hapi-fhir-core-version" }
kotlin-stdlib = { module = "org.jetbrains.kotlin:kotlin-stdlib", version.ref = "kotlin-stdlib" }
model = { module = "info.cqframework:model", version.ref = "cql-version" }
model-jackson = { module = "info.cqframework:model-jackson", version.ref = "cql-version" }
Expand All @@ -53,7 +50,7 @@ icu4j = { module="com.ibm.icu:icu4j", version.ref = "icu4j-version" }

[bundles]
cqf-cql = ["cql-to-elm","elm","elm-jackson","model","model-jackson"]
hapi-fhir-core = ["org-hl7-fhir-r4","org-hl7-fhir-utilities"]
hapi-fhir-core = ["org-hl7-fhir-r4"]
jackson = ["jackson-annotations","jackson-core", "jackson-databind"]
opencds = ["engine","engine-jackson","evaluator","evaluator-builder","evaluator-dagger","evaluator-plandefinition"]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class FctStructureMapUtilities {
public FctStructureMapUtilities() throws IOException {

FilesystemPackageCacheManager pcm =
new FilesystemPackageCacheManager(true, ToolsVersion.TOOLS_VERSION);
new FilesystemPackageCacheManager(true);

// Package name manually checked from
// https://simplifier.net/packages?Text=hl7.fhir.core&fhirVersion=All+FHIR+Versions
Expand Down
Loading