From 238cb8261a84f5305ba26446f2aad0b2b4a1a1ee Mon Sep 17 00:00:00 2001 From: tiulpin Date: Wed, 17 Jan 2024 22:41:43 +0100 Subject: [PATCH] :memo: Fix mentioned Gradle versions --- GRADLE.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 {