Hi Alexey,
The workaround did not work.
Using super.execute with / without the workaround gave further JAVA exceptions.
The problem still persist.
Not sure if I am doing the right thing as a part of work around.
Here is the relevant code…
@Scanned
public class RobotReport extends ViewBuildResults {
@ComponentImport private final StorageLocationService storageLocationService;
@ComponentImport private final BambooPermissionManager bambooPermissionManager;
@ComponentImport private final BambooAuthenticationContext bambooAuthenticationContext;
@ComponentImport private final JiraApplinksService jiraApplinksService;
@ComponentImport private final WebInterfaceManager webInterfaceManager;
@ComponentImport private final VcsRepositoryConfigurationService vcsRepositoryConfigurationService;
@ComponentImport private final PlanExecutionManager planExecutionManager;
@ComponentImport private final TriggerManager triggerManager;
@ComponentImport private final PlanManager planManager;
public RobotReport(final StorageLocationService storageLocationService, final BambooPermissionManager bambooPermissionManager,
final BambooAuthenticationContext bambooAuthenticationContext, final JiraApplinksService jiraApplinksService,
final WebInterfaceManager webInterfaceManager, final VcsRepositoryConfigurationService vcsRepositoryConfigurationService,
final PlanExecutionManager planExecutionManager, final TriggerManager triggerManager, final PlanManager planManager){
this.storageLocationService = storageLocationService;
this.bambooPermissionManager = bambooPermissionManager;
this.bambooAuthenticationContext = bambooAuthenticationContext;
this.jiraApplinksService = jiraApplinksService;
this.webInterfaceManager = webInterfaceManager;
this.vcsRepositoryConfigurationService = vcsRepositoryConfigurationService;
this.planExecutionManager = planExecutionManager;
this.triggerManager = triggerManager;
this.planManager = planManager;
}
public String execute() throws Exception {
String strBuildList = super.doExecute();
return strBuildList;
}
Do I need do make any change to the pom.xml ?
How do I verify that the dependencies are injected ?
Do I need to update the atlassian-spring-scanner version ? (<atlassian.spring.scanner.version>1.2.13</atlassian.spring.scanner.version>)