Search Gradle plugins

org.jetbrains.qodana

Qodana Gradle plugin allows to run and configure Idea inspections for Gradle project

https://jetbrains.com/qodana

Sources: https://github.com/JetBrains/qodana-gradle-plugin

Version 2024.1.2 (latest)

Created 25 April 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 "2024.1.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.jetbrains.qodana:qodana:2024.1.2")
  }
}

apply(plugin = "org.jetbrains.qodana")

Using the plugins DSL:

plugins {
  id "org.jetbrains.qodana" version "2024.1.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.jetbrains.qodana:qodana:2024.1.2"
  }
}

apply plugin: "org.jetbrains.qodana"

Learn how to apply plugins to subprojects