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 0.1.10
0.1.10
Created 31 August 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.10"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.jetbrains.qodana:gradle-qodana-plugin:0.1.10")
}
}
apply(plugin = "org.jetbrains.qodana")
Using the plugins DSL:
plugins {
id "org.jetbrains.qodana" version "0.1.10"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.jetbrains.qodana:gradle-qodana-plugin:0.1.10"
}
}
apply plugin: "org.jetbrains.qodana"