1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-26 08:27:12 -07:00

Show a warning when an entry gets removed from the classpath.

This commit is contained in:
Cedric Beust 2015-11-09 18:12:16 -08:00
parent 6e140616b1
commit 3b52d56f58

View file

@ -28,6 +28,7 @@ public class DependencyManager @Inject constructor(val executors: KobaltExecutor
val result2 = reorderDependencies(result).filter {
// Only keep existent files (nonexistent files are probably optional dependencies or parent poms
// that point to other poms but don't have a jar file themselves)
log(2, "Remove nonexistent jar file from classpath: $it")
it.jarFile.get().exists()
}