From f4ddfe9caccbf789ac8d4cb363259ae9389433a4 Mon Sep 17 00:00:00 2001 From: Ugljesa Jovanovic Date: Mon, 1 Jun 2020 13:11:06 +0200 Subject: [PATCH] Add task tree plugin for debuging --- buildSrc/src/main/kotlin/Utils.kt | 1 + multiplatform-crypto-delegated/build.gradle.kts | 1 + 2 files changed, 2 insertions(+) diff --git a/buildSrc/src/main/kotlin/Utils.kt b/buildSrc/src/main/kotlin/Utils.kt index 219e842..63b3eae 100644 --- a/buildSrc/src/main/kotlin/Utils.kt +++ b/buildSrc/src/main/kotlin/Utils.kt @@ -76,6 +76,7 @@ fun independentDependencyBlock(nativeDeps : KotlinDependencyHandler.() -> Unit) * On mac when two targets that have the same parent source set have cinterops defined, gradle creates a "common" * target task for that source set metadata, even though it's a native source set, to work around that, we create * an intermediary source set with the same set of dependancies + * */ fun NamedDomainObjectContainer.createWorkaroundNativeMainSourceSet(name : String, nativeDeps : KotlinDependencyHandler.() -> Unit) : KotlinSourceSet { return create("${name}Workaround") { diff --git a/multiplatform-crypto-delegated/build.gradle.kts b/multiplatform-crypto-delegated/build.gradle.kts index 61d88bf..35f2dd2 100644 --- a/multiplatform-crypto-delegated/build.gradle.kts +++ b/multiplatform-crypto-delegated/build.gradle.kts @@ -27,6 +27,7 @@ plugins { id(PluginsDeps.signing) id(PluginsDeps.node) version Versions.nodePlugin id(PluginsDeps.dokka) version Versions.dokkaPlugin + id("com.dorongold.task-tree") version "1.5" } val sonatypeStaging = "https://oss.sonatype.org/service/local/staging/deploy/maven2/"