diff --git a/build.gradle b/build.gradle index 8a31f00a1..cda305eb1 100644 --- a/build.gradle +++ b/build.gradle @@ -63,8 +63,9 @@ repositories { } dependencies { + compile 'com.blackducksoftware.integration:phone-home-api:4.0.0' compile 'com.blackducksoftware.integration:hub-detect-model:0.0.3' - compile 'com.blackducksoftware.integration:hub-common:14.1.1' + compile 'com.blackducksoftware.integration:hub-common:14.1.2-SNAPSHOT' compile 'org.springframework.boot:spring-boot-starter' compile 'org.apache.maven.shared:maven-invoker:3.0.0' compile 'com.esotericsoftware.yamlbeans:yamlbeans:1.11' diff --git a/src/main/groovy/com/blackducksoftware/integration/hub/detect/hub/HubManager.groovy b/src/main/groovy/com/blackducksoftware/integration/hub/detect/hub/HubManager.groovy index db03ad368..7882e3135 100644 --- a/src/main/groovy/com/blackducksoftware/integration/hub/detect/hub/HubManager.groovy +++ b/src/main/groovy/com/blackducksoftware/integration/hub/detect/hub/HubManager.groovy @@ -110,7 +110,7 @@ class HubManager { projectVersionView = scanProject } } - if (detectConfiguration.getPolicyCheck() || detectConfiguration.getRiskreportPdf() || detectConfiguration.getNoticesReport()) { + if (detectConfiguration.getPolicyCheck() || detectConfiguration.getRiskreportPdf() || detectConfiguration.getNoticeReport()) { waitForBomUpdate(hubServicesFactory.createProjectDataService(slf4jIntLogger), hubServicesFactory.createCodeLocationRequestService(slf4jIntLogger), hubServicesFactory.createMetaService(slf4jIntLogger), hubServicesFactory.createScanSummaryRequestService(), hubServicesFactory.createScanStatusDataService(slf4jIntLogger, detectConfiguration.getPolicyCheckTimeout()), projectVersionView) }