more diagnostics in buildModulesAndCollectUsedJars()

This commit is contained in:
Dmitry Jemerov
2013-09-18 20:03:23 +02:00
parent a99e7afbbf
commit 7c0ff903a4
+1 -1
View File
@@ -789,7 +789,7 @@ binding.setVariable("buildModulesAndCollectUsedJars", { List modules, List appro
String path = file.canonicalPath.replace('\\', '/')
if (path.endsWith(".jar") && approvedJars.any { path.startsWith(it) } && !forbiddenJars.any { path.contains(it) }) {
if (usedJars.add(path)) {
projectBuilder.info("\tADDED: $path")
projectBuilder.info("\tADDED: $path for ${module.getName()}")
}
}
}