Update BaseJpaRestfulServer.java
ups
This commit is contained in:
committed by
GitHub
parent
538bf6b707
commit
6c826b77ed
@@ -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);
|
||||||
|
|||||||
Reference in New Issue
Block a user