From 4d8b4c3e246b25e2fac0d27339242ccfb407fec6 Mon Sep 17 00:00:00 2001 From: Louis CAD Date: Sat, 31 Jul 2021 03:01:57 +0200 Subject: [PATCH] Fix publication-checker --- tools/publication-checker/build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/publication-checker/build.gradle.kts b/tools/publication-checker/build.gradle.kts index f6fa4311..def401ad 100644 --- a/tools/publication-checker/build.gradle.kts +++ b/tools/publication-checker/build.gradle.kts @@ -76,7 +76,7 @@ kotlin { val sourceSet: KotlinSourceSet = target.mainSourceSet if (splitTargets.any { it.targetsSamePlatformAs(target) }) { sourceSet.dependencies { - implementation("$group:splitties-${project.name}") { + implementation("$group:${project.name}") { version { strictly(version) } } } @@ -93,7 +93,7 @@ kotlin { val sourceSet: KotlinSourceSet = target.mainSourceSet if (splitTargets.any { it.targetsSamePlatformAs(target) }) { sourceSet.dependencies { - implementation("$group:splitties-fun-pack-${project.name}") { + implementation("$group:${project.name}") { version { strictly(version) } } }