From 53cb0b13f964ed06502e0e3c2e64bc3d72b2a04a Mon Sep 17 00:00:00 2001 From: "Sergey.Shanshin" Date: Wed, 31 May 2023 19:39:50 +0200 Subject: [PATCH] Fixed Kover Plugin ID for legacy plugin application --- README.md | 4 ++-- docs/gradle-plugin/index.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index a40de449..190a9410 100644 --- a/README.md +++ b/README.md @@ -73,7 +73,7 @@ buildscript { } } -apply(plugin = "kover") +apply(plugin = "org.jetbrains.kotlinx.kover") ``` @@ -92,7 +92,7 @@ buildscript { } } -apply plugin: 'kover' +apply plugin: 'org.jetbrains.kotlinx.kover' ``` diff --git a/docs/gradle-plugin/index.md b/docs/gradle-plugin/index.md index ce1d5875..f795e537 100644 --- a/docs/gradle-plugin/index.md +++ b/docs/gradle-plugin/index.md @@ -60,7 +60,7 @@ buildscript { } } -apply(plugin = "kover") +apply(plugin = "org.jetbrains.kotlinx.kover") ``` @@ -76,7 +76,7 @@ buildscript { } } -apply plugin: 'kover' +apply plugin: 'org.jetbrains.kotlinx.kover' ``` ## Using Kover tasks