diff --git a/GRADLE.md b/GRADLE.md index 9d235ed6..627b5e34 100644 --- a/GRADLE.md +++ b/GRADLE.md @@ -23,7 +23,7 @@ Apply Gradle plugin `org.jetbrains.qodana` in the Gradle configuration file: ```groovy plugins { - id "org.jetbrains.qodana" version "..." + id "org.jetbrains.qodana" version "2023.3.1" } ``` @@ -31,7 +31,7 @@ Apply Gradle plugin `org.jetbrains.qodana` in the Gradle configuration file: ```kotlin plugins { - id("org.jetbrains.qodana") version "..." + id("org.jetbrains.qodana") version "2023.3.1" } ``` @@ -64,7 +64,7 @@ Add this to your Gradle configuration file: ```groovy plugins { // applies Gradle Qodana plugin to use it in project - id "org.jetbrains.qodana" version "..." + id "org.jetbrains.qodana" version "2023.3.1" } qodana { @@ -82,7 +82,7 @@ Add this to your Gradle configuration file: ```kotlin plugins { // applies Gradle Qodana plugin to use it in project - id("org.jetbrains.qodana") version "..." + id("org.jetbrains.qodana") version "2023.3.1" } qodana {