From 9bc87b17bd1f3654177a1ddb0ec4c6e2ffc238be Mon Sep 17 00:00:00 2001 From: Alexander Udalov Date: Mon, 8 Nov 2021 22:45:13 +0100 Subject: [PATCH] Build: suppress wasm stability warning To prevent it from being displayed when configuring `:kotlin-stdlib-wasm` and ':kotlin-test:kotlin-test-wasm' on each build. --- gradle.properties | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gradle.properties b/gradle.properties index b7eaa7c8935..7273fcaa7c0 100644 --- a/gradle.properties +++ b/gradle.properties @@ -31,10 +31,12 @@ kotlin.jvm.target.validation.mode=error # TODO: add this flag in a granular way to the modules that don't need stdlib? kotlin.stdlib.default.dependency=false -# Suppress warnings about using deprecated and Alpha multiplatform plugins in kotlin-stdlib +# Suppress warnings about using deprecated and unstable plugins in kotlin-stdlib kotlin.internal.mpp12x.deprecation.suppress=true kotlin.mpp.stability.nowarn=true +kotlin.wasm.stability.nowarn=true kotlin.2js.nowarn=true + kotlin.native.enabled=false kotlin.native.home=kotlin-native/dist