From edea9b0db3188ea3fce3ca1637fad92aed4f026b Mon Sep 17 00:00:00 2001 From: Vyacheslav Gerasimov Date: Wed, 25 Aug 2021 00:26:45 +0300 Subject: [PATCH] Suppress deprecated `ConfigureUtil` in mppPresetFunctionsCodegen.kt Required for Gradle 7+ #KTI-559 --- .../kotlin/generators/gradle/dsl/mppPresetFunctionsCodegen.kt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libraries/tools/kotlin-gradle-plugin-dsl-codegen/src/main/kotlin/org/jetbrains/kotlin/generators/gradle/dsl/mppPresetFunctionsCodegen.kt b/libraries/tools/kotlin-gradle-plugin-dsl-codegen/src/main/kotlin/org/jetbrains/kotlin/generators/gradle/dsl/mppPresetFunctionsCodegen.kt index 4175f17b3ba..874058e3e12 100644 --- a/libraries/tools/kotlin-gradle-plugin-dsl-codegen/src/main/kotlin/org/jetbrains/kotlin/generators/gradle/dsl/mppPresetFunctionsCodegen.kt +++ b/libraries/tools/kotlin-gradle-plugin-dsl-codegen/src/main/kotlin/org/jetbrains/kotlin/generators/gradle/dsl/mppPresetFunctionsCodegen.kt @@ -3,6 +3,8 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +@file:Suppress("DEPRECATION") // Suppress deprecation warning of ConfigureUtil + package org.jetbrains.kotlin.generators.gradle.dsl import groovy.lang.Closure