fix to get tests passing again. If I'm lucky

This commit is contained in:
Grahame Grieve 2022-12-14 11:54:14 +11:00
parent 72eae55218
commit 9aeb39671b
3 changed files with 6 additions and 2 deletions

View File

@ -6,3 +6,7 @@
## Other code changes
* Refactoring package-list.json handling
* Upgrade code to latest R5 release (Snapshot 3)
* Fix bug with version patching loading package for the first time + fix bug determining spec reference
* Add Ids to profile spreadsheets

View File

@ -583,7 +583,7 @@ public class VersionUtilities {
case "3.0" : return "http://hl7.org/fhir/STU3";
case "4.0" : return "http://hl7.org/fhir/R4";
case "4.3" : return "http://hl7.org/fhir/R4B";
case "5.0" : return "http://build.fhir.org";
case "5.0" : return "http://hl7.org/fhir/5.0.0-snapshot3";
default:
return "http://hl7.org/fhir";
}

View File

@ -19,7 +19,7 @@
<properties>
<hapi_fhir_version>6.2.1</hapi_fhir_version>
<validator_test_case_version>1.2.2</validator_test_case_version>
<validator_test_case_version>1.2.3</validator_test_case_version>
<junit_jupiter_version>5.7.1</junit_jupiter_version>
<junit_platform_launcher_version>1.8.2</junit_platform_launcher_version>
<maven_surefire_version>3.0.0-M5</maven_surefire_version>