[Gradle] Implement IdeDependencyLogger
KT-54977
This commit is contained in:
committed by
Space Team
parent
0ad45cc196
commit
c30b554dc4
+27
@@ -0,0 +1,27 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2010-2022 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
||||||
|
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.jetbrains.kotlin.gradle.plugin.ide
|
||||||
|
|
||||||
|
import org.jetbrains.kotlin.gradle.idea.tcs.IdeaKotlinDependency
|
||||||
|
import org.jetbrains.kotlin.gradle.plugin.KotlinSourceSet
|
||||||
|
import org.jetbrains.kotlin.gradle.plugin.sources.project
|
||||||
|
|
||||||
|
internal object IdeDependencyLogger : IdeDependencyEffect {
|
||||||
|
|
||||||
|
private const val propertyKey = "IdeDependencyLogger.log"
|
||||||
|
|
||||||
|
override fun invoke(sourceSet: KotlinSourceSet, dependencies: Set<IdeaKotlinDependency>) {
|
||||||
|
val log = sourceSet.project.properties[propertyKey]?.toString() ?: return
|
||||||
|
val coordinates = IdeaKotlinSourceCoordinates(sourceSet)
|
||||||
|
if (log.isEmpty() || Regex(log).matches(coordinates.toString())) {
|
||||||
|
IdeMultiplatformImport.logger.quiet(
|
||||||
|
"\n$coordinates resolved:\n" + dependencies.mapNotNull { it.coordinates }
|
||||||
|
.joinToString("\n") { it.toString().prependIndent(" ") } +
|
||||||
|
"\n"
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
+5
@@ -96,6 +96,11 @@ internal fun IdeMultiplatformImport(extension: KotlinProjectExtension): IdeMulti
|
|||||||
level = IdeMultiplatformImport.DependencyResolutionLevel.Overwrite
|
level = IdeMultiplatformImport.DependencyResolutionLevel.Overwrite
|
||||||
)
|
)
|
||||||
|
|
||||||
|
registerDependencyEffect(
|
||||||
|
effect = IdeDependencyLogger,
|
||||||
|
constraint = SourceSetConstraint.unconstrained
|
||||||
|
)
|
||||||
|
|
||||||
registerExtrasSerializationExtension {
|
registerExtrasSerializationExtension {
|
||||||
register(kotlinDebugKey, IdeaKotlinExtrasSerializer.javaIoSerializable())
|
register(kotlinDebugKey, IdeaKotlinExtrasSerializer.javaIoSerializable())
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user