Map<String, Map<String, String>> jarsToDeploy, DeployerProject project,
final String changedFileName) throws IOException {
final File changedFile = new File(changedFileName);
for (int i = 0; i < project.sources.size(); i++) {
final DeployerSourcesInfo sourcesInfo = project.sources.get(i);
String sourcesFullPath = FilenameUtils.concat(project.path, sourcesInfo.path);
final File sourceFullDirectory = new File(sourcesFullPath);
if (FileUtils.directoryContains(sourceFullDirectory, changedFile) &&
changedFileName.endsWith(JAVA_FILE_EXTENSION)) {