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

0.1.12

Created 01 September 2021.

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

Add this plugin to your build using the plugins DSL:

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.jetbrains.qodana:gradle-qodana-plugin:0.1.12")
      }
    }
    
    apply(plugin = "org.jetbrains.qodana")
  • Applying plugins to all subprojects .