this.searchArtifacts(currentApp.getExtractedPath(), currentApp);
// If all dependencies are resolved, we deploy the entire app
if (isArtifactReadyToDeploy(currentApp.getAppConfig().getApplicationArtifact())) {
// persist the completed cApp into registry..
capm.persistCarbonApp(currentApp);
// send the CarbonApplication instance through the handler chain
for (AppDeploymentHandler handler : appDeploymentHandlers) {
handler.deployArtifacts(currentApp, axisConfig);
}