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 0.1.12

Created 01 September 2021.

Gradle Qodana Plugin allows to run and configure Idea inspections for Gradle project.

Using the plugins DSL:

plugins {
  id("org.jetbrains.qodana") version "0.1.12"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "org.jetbrains.qodana"

Learn how to apply plugins to subprojects