org.jetbrains.qodana
Owner: JetBrains
Qodana Gradle plugin allows to run and configure Idea inspections for Gradle project
Sources: https://github.com/JetBrains/qodana-gradle-plugin
Version 2023.3.1
2023.3.1
Created 22 January 2024.
Qodana for Gradle plugin allows to run and configure Qodana analysis for Gradle projects.
Using the plugins DSL:
plugins {
id("org.jetbrains.qodana") version "2023.3.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.jetbrains.qodana:qodana:2023.3.1")
}
}
apply(plugin = "org.jetbrains.qodana")
Using the plugins DSL:
plugins {
id "org.jetbrains.qodana" version "2023.3.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.jetbrains.qodana:qodana:2023.3.1"
}
}
apply plugin: "org.jetbrains.qodana"