1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-26 08:27:12 -07:00
This commit is contained in:
Cedric Beust 2015-11-29 14:19:13 -08:00
parent e55b9f0607
commit 7b68f9d980

View file

@ -166,7 +166,7 @@ private class Main @Inject constructor(
//
// Run all their dependencies through the IDependencyInterceptors
//
runClasspathInterceptors(allProjects, pluginInfo)
runClasspathInterceptors(allProjects)
log(2, "Final list of repos:\n " + Kobalt.repos.joinToString("\n "))
@ -210,7 +210,7 @@ private class Main @Inject constructor(
return result
}
private fun runClasspathInterceptors(allProjects: List<Project>, pluginInfo: PluginInfo) {
private fun runClasspathInterceptors(allProjects: List<Project>) {
allProjects.forEach {
runClasspathInterceptors(it.compileDependencies)
runClasspathInterceptors(it.compileProvidedDependencies)