diff --git a/commons/Module.md b/commons/Module.md index 486632c..7c186be 100644 --- a/commons/Module.md +++ b/commons/Module.md @@ -1,6 +1,20 @@ HL7v2 commons implementation module with common capabilities for HL7 versions -# HL7v2 Commons Module +## HL7v2 Commons Module ## Overview This Module holds the common implementations accross all the HL7 v2 versions from 2.3 to 2.8. + +### Note: +From Ballerina Swan Lake Update 10 upwards, `--optimize-dependency-compilation` flag is +introduced to optimize the memory usage during the compilation time. +Use the flag in the build command as follows, + +`bal build --optimize-dependency-compilation` + +or add as a config in the `Ballerina.toml` file. + +``` +[build-options] +optimizeDependencyCompilation = true +``` diff --git a/commons/Package.md b/commons/Package.md index a5e0ad7..cdb700a 100644 --- a/commons/Package.md +++ b/commons/Package.md @@ -4,3 +4,18 @@ Package containing core HL7v2 common implementations accross HL7 versions to imp ## Package Overview This Package holds the common implementations accross all the HL7 v2 versions from 2.3 to 2.8. + +### Note: +From Ballerina Swan Lake Update 10 upwards, `--optimize-dependency-compilation` flag is +introduced to optimize the memory usage during the compilation time. +Use the flag in the build command as follows, + +`bal build --optimize-dependency-compilation` + +or add as a config in the `Ballerina.toml` file. + +``` +[build-options] +optimizeDependencyCompilation = true +``` + diff --git a/utils/v2tofhirr4/Module.md b/utils/v2tofhirr4/Module.md index 87a9d89..c4b6dcb 100644 --- a/utils/v2tofhirr4/Module.md +++ b/utils/v2tofhirr4/Module.md @@ -46,4 +46,18 @@ public function main() returns error? { io:println("HL7v23 PID Patient Name: ", patientName[0].toString()); } } -``` \ No newline at end of file +``` + +### Note: +From Ballerina Swan Lake Update 10 upwards, `--optimize-dependency-compilation` flag is +introduced to optimize the memory usage during the compilation time. +Use the flag in the build command as follows, + +`bal build --optimize-dependency-compilation` + +or add as a config in the `Ballerina.toml` file. + +``` +[build-options] +optimizeDependencyCompilation = true +``` diff --git a/utils/v2tofhirr4/Package.md b/utils/v2tofhirr4/Package.md index 906729a..a3a44f5 100644 --- a/utils/v2tofhirr4/Package.md +++ b/utils/v2tofhirr4/Package.md @@ -5,3 +5,17 @@ Package containing HL7v2.x to FHIR pre-built mapping functionalities. ## Package Overview This package implements the HL7 version 2 to FHIR implementation guide (https://build.fhir.org/ig/HL7/v2-to-fhir/branches/master/datatype_maps.html). + +### Note: +From Ballerina Swan Lake Update 10 upwards, `--optimize-dependency-compilation` flag is +introduced to optimize the memory usage during the compilation time. +Use the flag in the build command as follows, + +`bal build --optimize-dependency-compilation` + +or add as a config in the `Ballerina.toml` file. + +``` +[build-options] +optimizeDependencyCompilation = true +```