From 9c7ff718d339cb406d04ba378ac9e7f134c004b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bernd=20Pr=C3=BCnster?= Date: Sat, 2 Mar 2024 14:28:33 +0100 Subject: [PATCH] update conventions + fix plugin name shadowing --- conventions-vclib/gradle-conventions-plugin | 2 +- conventions-vclib/src/main/kotlin/{Plugin.kt => VcLibPlugin.kt} | 0 vclib/src/iosTest/kotlin/IosTest.kt | 2 ++ 3 files changed, 3 insertions(+), 1 deletion(-) rename conventions-vclib/src/main/kotlin/{Plugin.kt => VcLibPlugin.kt} (100%) diff --git a/conventions-vclib/gradle-conventions-plugin b/conventions-vclib/gradle-conventions-plugin index f0964edca..92f2d813f 160000 --- a/conventions-vclib/gradle-conventions-plugin +++ b/conventions-vclib/gradle-conventions-plugin @@ -1 +1 @@ -Subproject commit f0964edca4eb9dfc266b45198d929af02f0b98f4 +Subproject commit 92f2d813f9804b46f2bf77504bfede472da6a081 diff --git a/conventions-vclib/src/main/kotlin/Plugin.kt b/conventions-vclib/src/main/kotlin/VcLibPlugin.kt similarity index 100% rename from conventions-vclib/src/main/kotlin/Plugin.kt rename to conventions-vclib/src/main/kotlin/VcLibPlugin.kt diff --git a/vclib/src/iosTest/kotlin/IosTest.kt b/vclib/src/iosTest/kotlin/IosTest.kt index 0530bdd62..599feec35 100644 --- a/vclib/src/iosTest/kotlin/IosTest.kt +++ b/vclib/src/iosTest/kotlin/IosTest.kt @@ -1,3 +1,5 @@ import io.kotest.core.spec.style.FreeSpec +import kotlin.experimental.ExperimentalNativeApi +@OptIn(ExperimentalNativeApi::class) class `iOS-Only Test` : FreeSpec({ "should run on on ${Platform}"{} }) \ No newline at end of file