Skip to content

Commit

Permalink
📝 Fix mentioned Gradle versions
Browse files Browse the repository at this point in the history
  • Loading branch information
tiulpin committed Jan 17, 2024
1 parent 5047802 commit 238cb82
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions GRADLE.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ 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"
}
```
- Kotlin DSL – `build.gradle.kts`
```kotlin
plugins {
id("org.jetbrains.qodana") version "..."
id("org.jetbrains.qodana") version "2023.3.1"
}
```
Expand Down Expand Up @@ -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 {
Expand All @@ -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 {
Expand Down

0 comments on commit 238cb82

Please sign in to comment.