Update BaseJpaRestfulServer.java

ups
This commit is contained in:
Jens Kristian Villadsen
2021-06-24 14:59:32 +02:00
committed by GitHub
parent 538bf6b707
commit 6c826b77ed

View File

@@ -369,10 +369,10 @@ public class BaseJpaRestfulServer extends RestfulServer {
PackageInstallationSpec packageInstallationSpec = new PackageInstallationSpec() PackageInstallationSpec packageInstallationSpec = new PackageInstallationSpec()
.setPackageUrl(guide.getValue().getUrl()) .setPackageUrl(guide.getValue().getUrl())
.setName(guide.getValue().getName()) .setName(guide.getValue().getName())
.setVersion(guide.getValue().getVersion()); .setVersion(guide.getValue().getVersion())
.setInstallMode(PackageInstallationSpec.InstallModeEnum.STORE_AND_INSTALL);
if(appProperties.getInstall_transitive_ig_dependencies()) { if(appProperties.getInstall_transitive_ig_dependencies()) {
packageInstallationSpec.setFetchDependencies(true) packageInstallationSpec.setFetchDependencies(true);
.setInstallMode(PackageInstallationSpec.InstallModeEnum.STORE_AND_INSTALL);
packageInstallationSpec.setDependencyExcludes(ImmutableList.of("hl7.fhir.r2.core", "hl7.fhir.r3.core", "hl7.fhir.r4.core", "hl7.fhir.r5.core")); packageInstallationSpec.setDependencyExcludes(ImmutableList.of("hl7.fhir.r2.core", "hl7.fhir.r3.core", "hl7.fhir.r4.core", "hl7.fhir.r5.core"));
} }
packageInstallerSvc.install(packageInstallationSpec); packageInstallerSvc.install(packageInstallationSpec);