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

Incorrect log.

This commit is contained in:
Cedric Beust 2015-11-11 09:34:35 -08:00
parent 6bc2a2ecb9
commit a8bebf3dbf

View file

@ -1,7 +1,6 @@
package com.beust.kobalt.maven
import com.beust.kobalt.misc.KobaltExecutors
import com.beust.kobalt.misc.log
import com.google.common.collect.ArrayListMultimap
import java.util.*
import javax.inject.Inject
@ -28,7 +27,6 @@ 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()
}