搜索 Gradle 插件

org.jetbrains.qodana

所有者: JetBrains

Qodana Gradle 插件允许在 Gradle 项目中运行和配置 IntelliJ 检查

https://jetbrains.com/qodana

源代码: https://github.com/JetBrains/qodana-gradle-plugin

版本 2024.1.9(最新版)

2024.1.9

创建日期 2024年8月7日。

Qodana for Gradle 插件允许为 Gradle 项目运行和配置 Qodana 分析。

使用插件 DSL

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

使用旧插件应用程序

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

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

使用插件 DSL

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

使用旧插件应用程序

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

apply plugin: "org.jetbrains.qodana"

了解如何将插件应用到子项目中