From 0c355c483b641998496e97b9da3ab288a7bd0cf1 Mon Sep 17 00:00:00 2001 From: Victor Turansky Date: Tue, 12 May 2020 23:53:16 +0300 Subject: [PATCH] New Kotlin/JVM & Kotlin/Multiplatform plugins --- gradle/compile-jvm.gradle | 2 +- kotlinx-coroutines-core/build.gradle | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gradle/compile-jvm.gradle b/gradle/compile-jvm.gradle index a8116595f5..35f3c1e147 100644 --- a/gradle/compile-jvm.gradle +++ b/gradle/compile-jvm.gradle @@ -4,7 +4,7 @@ // Platform-specific configuration to compile JVM modules -apply plugin: 'kotlin' +apply plugin: 'org.jetbrains.kotlin.jvm' sourceCompatibility = 1.6 targetCompatibility = 1.6 diff --git a/kotlinx-coroutines-core/build.gradle b/kotlinx-coroutines-core/build.gradle index 451293c5ff..6e479735b8 100644 --- a/kotlinx-coroutines-core/build.gradle +++ b/kotlinx-coroutines-core/build.gradle @@ -2,7 +2,7 @@ * Copyright 2016-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. */ -apply plugin: 'kotlin-multiplatform' +apply plugin: 'org.jetbrains.kotlin.multiplatform' apply from: rootProject.file("gradle/targets.gradle") apply from: rootProject.file("gradle/compile-jvm-multiplatform.gradle") apply from: rootProject.file("gradle/compile-common.gradle")