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.4

Created 23 June 2021.

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "org.jetbrains.qodana"

Learn how to apply plugins to subprojects